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

39 lines
1.2 KiB
Plaintext
Raw Normal View History

plugins {
2021-04-14 12:40:26 +03:00
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
}
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.
All operations are specialized to work with `Double` numbers without declaring algebraic contexts.
One can still use generic algebras though.
""".trimIndent()
2021-04-16 22:43:10 +03:00
maturity = ru.mipt.npm.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",
2020-11-29 13:32:20 +03:00
description = "Numpy-like operations for Buffers/Points",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleVector.kt"
2020-11-29 13:32:20 +03:00
)
feature(
2021-03-16 21:17:26 +03:00
id = "DoubleMatrix",
2020-11-29 13:32:20 +03:00
description = "Numpy-like operations for 2d real structures",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/real/DoubleMatrix.kt"
2020-11-29 13:32:20 +03:00
)
feature(
id = "grids",
description = "Uniform grid generators",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/structures/grids.kt"
2020-11-29 13:32:20 +03:00
)
}