2021-03-23 18:13:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2018-2021 KMath contributors.
|
|
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
|
|
*/
|
|
|
|
|
2021-04-16 14:02:44 +03:00
|
|
|
import ru.mipt.npm.gradle.Maturity
|
|
|
|
|
2020-09-20 12:40:07 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("jvm")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2020-09-20 12:40:07 +03:00
|
|
|
}
|
2020-09-09 19:42:43 +03:00
|
|
|
|
|
|
|
dependencies {
|
2021-03-17 19:11:26 +03:00
|
|
|
api("org.ejml:ejml-simple:0.40")
|
|
|
|
api(project(":kmath-core"))
|
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 {
|
2021-04-16 14:02:44 +03:00
|
|
|
maturity = Maturity.PROTOTYPE
|
2021-03-17 19:11:26 +03:00
|
|
|
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"
|
|
|
|
)
|
|
|
|
}
|