2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2020-09-20 12:36:48 +03:00
|
|
|
}
|
2020-01-12 10:02:28 +03:00
|
|
|
|
2020-09-08 12:40:47 +03:00
|
|
|
kotlin.sourceSets.commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
2020-01-12 10:02:28 +03:00
|
|
|
}
|
2021-01-30 20:12:14 +03:00
|
|
|
|
|
|
|
readme {
|
|
|
|
description = "Functions and interpolation"
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
2021-03-16 22:46:22 +03:00
|
|
|
feature("piecewise", "src/commonMain/kotlin/space/kscience/kmath/functions/Piecewise.kt", "Piecewise functions.")
|
|
|
|
feature("polynomials", "src/commonMain/kotlin/space/kscience/kmath/functions/Polynomial.kt", "Polynomial functions.")
|
2021-03-16 20:56:20 +03:00
|
|
|
feature("linear interpolation",
|
2021-03-16 22:46:22 +03:00
|
|
|
"src/commonMain/kotlin/space/kscience/kmath/interpolation/LinearInterpolator.kt",
|
2021-03-16 20:56:20 +03:00
|
|
|
"Linear XY interpolator.")
|
|
|
|
feature("spline interpolation",
|
2021-03-16 22:46:22 +03:00
|
|
|
"src/commonMain/kotlin/space/kscience/kmath/interpolation/SplineInterpolator.kt",
|
2021-03-16 20:56:20 +03:00
|
|
|
"Cubic spline XY interpolator.")
|
2021-01-30 20:12:14 +03:00
|
|
|
}
|