kmath/kmath-kotlingrad/README.md

35 lines
881 B
Markdown
Raw Normal View History

# Module kmath-kotlingrad
[Kotlin∇](https://github.com/breandan/kotlingrad) integration module.
2021-07-20 20:45:29 +03:00
- [differentiable-mst-expression](src/main/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt) : MST based DifferentiableExpression.
- [scalars-adapters](src/main/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt) : Conversions between Kotlin∇'s SFun and MST
## Artifact:
2022-07-24 12:01:02 +03:00
The Maven coordinates of this project are `space.kscience:kmath-kotlingrad:0.3.1-dev-1`.
2022-03-31 22:23:34 +03:00
**Gradle Groovy:**
```groovy
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
2022-07-24 12:01:02 +03:00
implementation 'space.kscience:kmath-kotlingrad:0.3.1-dev-1'
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2022-07-24 12:01:02 +03:00
implementation("space.kscience:kmath-kotlingrad:0.3.1-dev-1")
}
```