2021-05-09 12:40:10 +03:00
|
|
|
# Module kmath-kotlingrad
|
|
|
|
|
2021-05-07 15:59:21 +03:00
|
|
|
[Kotlin∇](https://github.com/breandan/kotlingrad) integration module.
|
2021-05-09 12:40:10 +03:00
|
|
|
|
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
|
2021-05-09 12:40:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
## Artifact:
|
|
|
|
|
2023-04-07 19:55:34 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-kotlingrad:0.4.0-dev-1`.
|
2021-05-09 12:40:10 +03:00
|
|
|
|
2022-03-31 22:23:34 +03:00
|
|
|
**Gradle Groovy:**
|
|
|
|
```groovy
|
2021-05-09 12:40:10 +03:00
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.kotlin.link' }
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-04-07 19:55:34 +03:00
|
|
|
implementation 'space.kscience:kmath-kotlingrad:0.4.0-dev-1'
|
2021-05-09 12:40:10 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-04-07 19:55:34 +03:00
|
|
|
implementation("space.kscience:kmath-kotlingrad:0.4.0-dev-1")
|
2021-05-09 12:40:10 +03:00
|
|
|
}
|
|
|
|
```
|