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.
|
|
|
|
*/
|
|
|
|
|
2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("multiplatform")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
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
|
|
|
}
|