kmath/kmath-core
Alexander Nozik 51b7d4e73e
Merge pull request #140 from mipt-npm/autodiff-update
Upgrade AutoDiff support of trigonometric ops, also fix some problems with MstAlgebra
2020-09-20 18:21:36 +03:00
..
src Merge pull request #140 from mipt-npm/autodiff-update 2020-09-20 18:21:36 +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 README.md 2020-09-06 19:03:24 +03:00

The Core Module (kmath-core)

The core features of KMath:

  • Algebraic structures: contexts and elements.
  • ND structures.
  • Buffers.
  • Functional Expressions.
  • Domains.
  • Automatic differentiation.

Artifact:

This module is distributed in the artifact scientifik:kmath-core:0.1.4-dev-8.

Gradle:

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

dependencies {
    implementation 'scientifik:kmath-core:0.1.4-dev-8'
}

Gradle Kotlin DSL:

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

dependencies {``
    implementation("scientifik:kmath-core:0.1.4-dev-8")
}