kmath/kmath-commons
2022-07-24 12:01:02 +03:00
..
src Update gradle-tools, do Kotlin 1.6.0 migrations 2021-11-24 15:32:06 +07:00
build.gradle.kts QOW is working more or less 2021-08-16 09:55:03 +03:00
README.md Fix readme 2022-07-24 12:01:02 +03:00

Module kmath-commons

Commons math binding for kmath

Usage

Artifact:

The Maven coordinates of this project are space.kscience:kmath-commons:0.3.1-dev-1.

Gradle Groovy:

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

dependencies {
    implementation 'space.kscience:kmath-commons:0.3.1-dev-1'
}

Gradle Kotlin DSL:

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

dependencies {
    implementation("space.kscience:kmath-commons:0.3.1-dev-1")
}