2020-10-12 20:26:03 +07:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("jvm")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2020-10-12 20:26:03 +07:00
|
|
|
}
|
|
|
|
|
2021-11-25 23:26:08 +07:00
|
|
|
kotlin.sourceSets
|
|
|
|
.filter { it.name.contains("test", true) }
|
|
|
|
.map(org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet::languageSettings)
|
|
|
|
.forEach { it.optIn("space.kscience.kmath.misc.UnstableKMathAPI") }
|
|
|
|
|
2021-05-20 23:32:56 +07:00
|
|
|
description = "Kotlin∇ integration module"
|
|
|
|
|
2020-10-12 20:26:03 +07:00
|
|
|
dependencies {
|
2021-12-25 12:05:42 -05:00
|
|
|
api("ai.hypergraph:kaliningraph:0.1.9")
|
|
|
|
api("ai.hypergraph:kotlingrad:0.4.7")
|
2021-05-20 23:32:56 +07:00
|
|
|
api(project(":kmath-core"))
|
|
|
|
testImplementation(project(":kmath-ast"))
|
2020-10-12 20:26:03 +07:00
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2021-05-09 16:40:10 +07:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
|
|
|
"differentiable-mst-expression",
|
2021-07-13 00:21:46 +07:00
|
|
|
"src/main/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt",
|
2021-05-09 16:40:10 +07:00
|
|
|
) {
|
|
|
|
"MST based DifferentiableExpression."
|
|
|
|
}
|
|
|
|
|
|
|
|
feature(
|
2021-07-13 00:21:46 +07:00
|
|
|
"scalars-adapters",
|
|
|
|
"src/main/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt",
|
2021-05-09 16:40:10 +07:00
|
|
|
) {
|
|
|
|
"Conversions between Kotlin∇'s SFun and MST"
|
|
|
|
}
|
2021-04-21 19:46:02 +07:00
|
|
|
}
|