kmath/kmath-core
2020-09-21 15:53:11 +03:00
..
docs Implementation for #139 2020-09-21 15:47:47 +03:00
src scientifik -> kscience 2020-09-20 22:39:27 +03:00
build.gradle.kts Make one-liners not one-liners, add newlines at EOFs, optimize imports and Kotlin extension configurations 2020-09-20 16:36:48 +07:00
README.md Update CHANGELOG.md 2020-09-21 15:53:11 +03:00

The Core Module (kmath-core)

The core features of KMath:

  • algebras : Algebraic structures: contexts and elements
  • nd : Many-dimensional structures
  • buffers : One-dimensional structure
  • expressions : Functional Expressions
  • domains : Domains
  • autodif : Automatic differentiation

Artifact:

This module artifact: kscience.kmath:kmath-core:0.2.0-dev-1.

Gradle:

repositories {
    maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
    maven { url 'https://dl.bintray.com/mipt-npm/dev' }
    maven { url https://dl.bintray.com/hotkeytlt/maven' }
}

dependencies {
    implementation 'kscience.kmath:kmath-core:0.2.0-dev-1'
}

Gradle Kotlin DSL:

repositories {
    maven("https://dl.bintray.com/mipt-npm/kscience")
    maven("https://dl.bintray.com/mipt-npm/dev")
    maven("https://dl.bintray.com/hotkeytlt/maven")
}

dependencies {
    implementation("kscience.kmath:kmath-core:0.2.0-dev-1")
}