kmath/kmath-for-real/build.gradle.kts

45 lines
1.1 KiB
Plaintext
Raw Normal View History

plugins {
2022-09-04 20:59:30 +03:00
id("space.kscience.gradle.mpp")
}
kscience{
native()
}
kotlin.sourceSets.commonMain {
dependencies {
api(project(":kmath-core"))
}
}
2020-11-29 13:32:20 +03:00
readme {
description = """
Extension module that should be used to achieve numpy-like behavior.
2020-11-29 13:32:20 +03:00
All operations are specialized to work with `Double` numbers without declaring algebraic contexts.
One can still use generic algebras though.
""".trimIndent()
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
2020-11-29 13:32:20 +03:00
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
2021-03-16 21:17:26 +03:00
id = "DoubleVector",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleVector.kt"
2022-04-05 23:23:29 +03:00
){
"Numpy-like operations for Buffers/Points"
}
2020-11-29 13:32:20 +03:00
feature(
2021-03-16 21:17:26 +03:00
id = "DoubleMatrix",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleMatrix.kt"
2022-04-05 23:23:29 +03:00
){
"Numpy-like operations for 2d real structures"
}
2020-11-29 13:32:20 +03:00
feature(
id = "grids",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/structures/grids.kt"
2022-04-05 23:23:29 +03:00
){
"Uniform grid generators"
}
2020-11-29 13:32:20 +03:00
}