2021-01-06 17:01:37 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("multiplatform")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.native")
|
2021-01-06 17:01:37 +03:00
|
|
|
}
|
|
|
|
|
2021-01-20 10:56:09 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
2021-01-06 17:01:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
description = "Complex numbers and quaternions."
|
2021-04-20 17:39:45 +03:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
2021-01-06 17:01:37 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "complex",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt"
|
2022-06-13 11:17:41 +03:00
|
|
|
){
|
|
|
|
"Complex numbers operations"
|
|
|
|
}
|
2021-01-06 17:01:37 +03:00
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "quaternion",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
|
2022-06-13 11:17:41 +03:00
|
|
|
){
|
|
|
|
"Quaternions and their composition"
|
|
|
|
}
|
2021-01-06 17:01:37 +03:00
|
|
|
}
|