2020-09-20 12:40:07 +03:00
|
|
|
plugins {
|
2022-09-04 20:59:30 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2020-09-20 12:40:07 +03:00
|
|
|
}
|
2020-09-09 19:42:43 +03:00
|
|
|
|
2024-02-17 21:32:26 +03:00
|
|
|
val ejmlVerision = "0.43.1"
|
|
|
|
|
2020-09-09 19:42:43 +03:00
|
|
|
dependencies {
|
2024-02-17 21:32:26 +03:00
|
|
|
api("org.ejml:ejml-ddense:$ejmlVerision")
|
|
|
|
api("org.ejml:ejml-fdense:$ejmlVerision")
|
|
|
|
api("org.ejml:ejml-dsparse:$ejmlVerision")
|
|
|
|
api("org.ejml:ejml-fsparse:$ejmlVerision")
|
|
|
|
api(projects.kmathCore)
|
2020-09-09 19:42:43 +03:00
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2021-03-17 19:11:26 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-vector",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "Point implementations." }
|
2021-03-17 19:11:26 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-matrix",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "Matrix implementation." }
|
2021-03-17 19:11:26 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "ejml-linear-space",
|
|
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
|
2021-05-14 22:23:28 +03:00
|
|
|
) { "LinearSpace implementations." }
|
|
|
|
}
|
|
|
|
|
2024-02-17 21:32:26 +03:00
|
|
|
//kotlin.sourceSets.main {
|
|
|
|
// val codegen by tasks.creating {
|
|
|
|
// ejmlCodegen(kotlin.srcDirs.first().absolutePath + "/space/kscience/kmath/ejml/_generated.kt")
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// kotlin.srcDirs(files().builtBy(codegen))
|
|
|
|
//}
|