kmath/kmath-kotlingrad/build.gradle.kts

31 lines
853 B
Plaintext
Raw Normal View History

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