kmath/kmath-functions
Gleb Minaev dd820da765 1. Prototyped rest 2 algebraic structures of rational functions
2. Added `constantZero` and `constantOne` to abstract spaces and applied them instead of `ring.zero` and `ring.one`
3. Moved logic of `R.isZero` and 5 others to `AbstractRationalFunctionalSpace`
4. Deleted forgotten overridden functions of constants
5. Added KMath contributors' copyright notes
6. Added TODO 😄 The `NumberedPolynomial`'s `countOfVariables` is a confusing
2022-03-14 19:59:53 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src 1. Prototyped rest 2 algebraic structures of rational functions 2022-03-14 19:59:53 +03:00
build.gradle.kts Build infrastructure changes 2021-07-17 16:40:34 +07:00
README.md Regenerated READMEs 2022-03-13 03:44:16 +03:00

Module kmath-functions

Functions and interpolations.

Artifact:

The Maven coordinates of this project are space.kscience:kmath-functions:0.3.0-dev-19.

Gradle:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:kmath-functions:0.3.0-dev-19'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:kmath-functions:0.3.0-dev-19")
}