2020-10-12 16:26:03 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("jvm")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2020-10-12 16:26:03 +03:00
|
|
|
}
|
|
|
|
|
2021-05-20 19:32:56 +03:00
|
|
|
description = "Kotlin∇ integration module"
|
|
|
|
|
2020-10-12 16:26:03 +03:00
|
|
|
dependencies {
|
2021-05-09 12:40:10 +03:00
|
|
|
api("com.github.breandan:kaliningraph:0.1.6")
|
2021-04-28 14:03:28 +03:00
|
|
|
api("com.github.breandan:kotlingrad:0.4.5")
|
2021-05-20 19:32:56 +03:00
|
|
|
api(project(":kmath-core"))
|
|
|
|
testImplementation(project(":kmath-ast"))
|
2020-10-12 16:26:03 +03:00
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2021-05-09 12:40:10 +03:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
|
|
|
"differentiable-mst-expression",
|
2021-07-12 20:21:46 +03:00
|
|
|
"src/main/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt",
|
2021-05-09 12:40:10 +03:00
|
|
|
) {
|
|
|
|
"MST based DifferentiableExpression."
|
|
|
|
}
|
|
|
|
|
|
|
|
feature(
|
2021-07-12 20:21:46 +03:00
|
|
|
"scalars-adapters",
|
|
|
|
"src/main/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt",
|
2021-05-09 12:40:10 +03:00
|
|
|
) {
|
|
|
|
"Conversions between Kotlin∇'s SFun and MST"
|
|
|
|
}
|
2021-04-21 15:46:02 +03:00
|
|
|
}
|