kmath/kmath-kotlingrad/README.md

26 lines
686 B
Markdown
Raw Normal View History

# Module kmath-kotlingrad
[Kotlin∇](https://github.com/breandan/kotlingrad) integration module.
2024-03-27 09:11:12 +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:
2024-02-18 15:05:56 +03:00
The Maven coordinates of this project are `space.kscience:kmath-kotlingrad:0.4.0-dev-3`.
**Gradle Kotlin DSL:**
2024-03-27 09:11:12 +03:00
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2024-02-18 15:05:56 +03:00
implementation("space.kscience:kmath-kotlingrad:0.4.0-dev-3")
}
```