2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("multiplatform")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2021-07-16 21:12:14 +03:00
|
|
|
id("ru.mipt.npm.gradle.native")
|
2020-09-20 12:36:48 +03:00
|
|
|
}
|
2019-07-14 18:22:22 +03:00
|
|
|
|
2020-09-08 12:40:47 +03:00
|
|
|
kotlin.sourceSets.commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
2020-08-22 12:49:21 +03:00
|
|
|
}
|
2020-11-29 13:32:20 +03:00
|
|
|
|
|
|
|
readme {
|
|
|
|
description = """
|
2021-05-07 15:59:21 +03:00
|
|
|
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()
|
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
|
|
|
)
|
|
|
|
}
|