forked from kscience/kmath
e9c31b7827
# Conflicts: # README.md # build.gradle.kts # examples/src/main/kotlin/space/kscience/kmath/stat/DistributionBenchmark.kt # examples/src/main/kotlin/space/kscience/kmath/structures/ParallelRealNDField.kt # kmath-ast/README.md # kmath-ast/build.gradle.kts # kmath-ast/src/commonMain/kotlin/space/kscience/kmath/ast/MstExpression.kt # kmath-complex/README.md # kmath-complex/build.gradle.kts # kmath-complex/src/commonMain/kotlin/space/kscience/kmath/complex/ComplexNDField.kt # kmath-core/README.md # kmath-core/build.gradle.kts # kmath-core/src/commonMain/kotlin/space/kscience/kmath/expressions/MST.kt # kmath-core/src/commonMain/kotlin/space/kscience/kmath/expressions/MstAlgebra.kt # kmath-core/src/commonMain/kotlin/space/kscience/kmath/nd/RealNDField.kt # kmath-core/src/commonMain/kotlin/space/kscience/kmath/structures/RealBufferField.kt # kmath-coroutines/build.gradle.kts # kmath-coroutines/src/commonMain/kotlin/space/kscience/kmath/chains/BlockingRealChain.kt # kmath-coroutines/src/jvmMain/kotlin/space/kscience/kmath/structures/LazyNDStructure.kt # kmath-dimensions/src/commonTest/kotlin/kscience/dimensions/DMatrixContextTest.kt # kmath-for-real/README.md # kmath-functions/README.md # kmath-functions/src/commonMain/kotlin/space/kscience/kmath/interpolation/Interpolator.kt # kmath-functions/src/commonMain/kotlin/space/kscience/kmath/interpolation/LoessInterpolator.kt # kmath-functions/src/commonMain/kotlin/space/kscience/kmath/interpolation/XYPointSet.kt # kmath-geometry/build.gradle.kts # kmath-nd4j/README.md # kmath-nd4j/build.gradle.kts # kmath-stat/src/commonMain/kotlin/space/kscience/kmath/distributions/FactorizedDistribution.kt # kmath-stat/src/commonMain/kotlin/space/kscience/kmath/stat/Distribution.kt # kmath-stat/src/commonMain/kotlin/space/kscience/kmath/stat/Fitting.kt # kmath-stat/src/commonMain/kotlin/space/kscience/kmath/stat/OptimizationProblem.kt # kmath-stat/src/jvmMain/kotlin/space/kscience/kmath/stat/distributions.kt # kmath-viktor/src/main/kotlin/space/kscience/kmath/viktor/ViktorNDStructure.kt
100 lines
2.3 KiB
Plaintext
100 lines
2.3 KiB
Plaintext
/*
|
|
* Copyright 2018-2021 KMath contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
import ru.mipt.npm.gradle.Maturity
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
id("ru.mipt.npm.gradle.common")
|
|
}
|
|
|
|
kotlin.js {
|
|
nodejs {
|
|
testTask {
|
|
useMocha().timeout = "0"
|
|
}
|
|
}
|
|
|
|
browser {
|
|
testTask {
|
|
useMocha().timeout = "0"
|
|
}
|
|
}
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
}
|
|
}
|
|
|
|
commonTest {
|
|
dependencies {
|
|
implementation(project(":kmath-complex"))
|
|
}
|
|
}
|
|
|
|
jsMain {
|
|
dependencies {
|
|
implementation(npm("astring", "1.7.0"))
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
api("com.github.h0tk3y.betterParse:better-parse:0.4.1")
|
|
implementation("org.ow2.asm:asm:9.1")
|
|
implementation("org.ow2.asm:asm-commons:9.1")
|
|
}
|
|
}
|
|
}
|
|
|
|
//Workaround for https://github.com/Kotlin/dokka/issues/1455
|
|
tasks.dokkaHtml {
|
|
dependsOn(tasks.build)
|
|
}
|
|
|
|
readme {
|
|
maturity = Maturity.PROTOTYPE
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
feature(
|
|
id = "expression-language",
|
|
description = "Expression language and its parser",
|
|
ref = "src/jvmMain/kotlin/space/kscience/kmath/ast/parser.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "mst",
|
|
description = "MST (Mathematical Syntax Tree) as expression language's syntax intermediate representation",
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MST.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "mst-building",
|
|
description = "MST building algebraic structure",
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MstAlgebra.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "mst-interpreter",
|
|
description = "MST interpreter",
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/ast/MST.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "mst-jvm-codegen",
|
|
description = "Dynamic MST to JVM bytecode compiler",
|
|
ref = "src/jvmMain/kotlin/space/kscience/kmath/asm/asm.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "mst-js-codegen",
|
|
description = "Dynamic MST to JS compiler",
|
|
ref = "src/jsMain/kotlin/space/kscience/kmath/estree/estree.kt"
|
|
)
|
|
}
|