kmath/kmath-kotlingrad/README.md

35 lines
913 B
Markdown
Raw Normal View History

# Module kmath-kotlingrad
[Kotlin∇](https://www.htmlsymbols.xyz/unicode/U+2207) integration module.
- [differentiable-mst-expression](src/main/kotlin/space/kscience/kmath/kotlingrad/DifferentiableMstExpression.kt) : MST based DifferentiableExpression.
- [differentiable-mst-expression](src/main/kotlin/space/kscience/kmath/kotlingrad/DifferentiableMstExpression.kt) : Conversions between Kotlin∇'s SFun and MST
## Artifact:
2021-06-09 17:40:47 +03:00
The Maven coordinates of this project are `space.kscience:kmath-kotlingrad:0.3.0-dev-13`.
**Gradle:**
```gradle
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
2021-06-09 17:40:47 +03:00
implementation 'space.kscience:kmath-kotlingrad:0.3.0-dev-13'
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2021-06-09 17:40:47 +03:00
implementation("space.kscience:kmath-kotlingrad:0.3.0-dev-13")
}
```