kmath/kmath-ejml/build.gradle.kts
Alexander Nozik b818a8981f Eigenvalue decomposition API
Cosmetic change Double -> Float64
2024-08-17 21:11:13 +03:00

40 lines
1.0 KiB
Plaintext

plugins {
id("space.kscience.gradle.jvm")
}
val ejmlVerision = "0.43.1"
dependencies {
api(projects.kmathCore)
api(projects.kmathComplex)
api("org.ejml:ejml-all:$ejmlVerision")
}
readme {
maturity = space.kscience.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "ejml-vector",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
) { "Point implementations." }
feature(
id = "ejml-matrix",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
) { "Matrix implementation." }
feature(
id = "ejml-linear-space",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
) { "LinearSpace implementations." }
}
//kotlin.sourceSets.main {
// val codegen by tasks.creating {
// ejmlCodegen(kotlin.srcDirs.first().absolutePath + "/space/kscience/kmath/ejml/_generated.kt")
// }
//
// kotlin.srcDirs(files().builtBy(codegen))
//}