2020-09-25 10:13:38 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.mpp")
|
|
|
|
}
|
2019-01-26 19:38:18 +03:00
|
|
|
|
2020-09-08 12:40:47 +03:00
|
|
|
kotlin.sourceSets.commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-memory"))
|
|
|
|
}
|
2020-06-05 18:05:16 +03:00
|
|
|
}
|
2020-09-25 10:13:38 +03:00
|
|
|
|
|
|
|
readme {
|
|
|
|
description = "Core classes, algebra definitions, basic linear algebra"
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
|
|
|
|
feature(
|
|
|
|
id = "algebras",
|
|
|
|
description = "Algebraic structures: contexts and elements",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/operations/Algebra.kt"
|
|
|
|
)
|
|
|
|
feature(
|
|
|
|
id = "nd",
|
|
|
|
description = "Many-dimensional structures",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/structures/NDStructure.kt"
|
|
|
|
)
|
|
|
|
feature(
|
|
|
|
id = "buffers",
|
|
|
|
description = "One-dimensional structure",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/structures/Buffers.kt"
|
|
|
|
)
|
|
|
|
feature(
|
|
|
|
id = "expressions",
|
|
|
|
description = "Functional Expressions",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/expressions"
|
|
|
|
)
|
|
|
|
feature(
|
|
|
|
id = "domains",
|
|
|
|
description = "Domains",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/domains"
|
|
|
|
)
|
|
|
|
feature(
|
|
|
|
id = "autodif",
|
|
|
|
description = "Automatic differentiation",
|
|
|
|
ref = "src/commonMain/kotlin/kscience/kmath/misc/AutoDiff.kt"
|
|
|
|
)
|
|
|
|
}
|