33 lines
898 B
Plaintext
33 lines
898 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
id("ru.mipt.npm.gradle.common")
|
|
}
|
|
|
|
dependencies {
|
|
api("org.ejml:ejml-simple:0.40")
|
|
api(project(":kmath-core"))
|
|
}
|
|
|
|
readme {
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
feature(
|
|
id = "ejml-vector",
|
|
description = "The Point implementation using SimpleMatrix.",
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "ejml-matrix",
|
|
description = "The Matrix implementation using SimpleMatrix.",
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "ejml-linear-space",
|
|
description = "The LinearSpace implementation using SimpleMatrix.",
|
|
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
|
|
)
|
|
}
|