Skip to content

Commit

Permalink
Update feature source references
Browse files Browse the repository at this point in the history
Signed-off-by: Emmanuel Ferdman <[email protected]>
  • Loading branch information
emmanuel-ferdman committed Jan 27, 2025
1 parent cc8a892 commit af9c621
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ One can still use generic algebras though.
> **Maturity**: EXPERIMENTAL
>
> **Features:**
> - [differentiable-mst-expression](kmath-kotlingrad/src/jvmMain/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt) : MST based DifferentiableExpression.
> - [scalars-adapters](kmath-kotlingrad/src/jvmMain/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt) : Conversions between Kotlin∇'s SFun and MST
> - [differentiable-mst-expression](kmath-kotlingrad/src/main/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt) : MST based DifferentiableExpression.
> - [scalars-adapters](kmath-kotlingrad/src/main/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt) : Conversions between Kotlin∇'s SFun and MST

### [kmath-memory](kmath-memory)
Expand Down
6 changes: 3 additions & 3 deletions kmath-ejml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ readme {

feature(
id = "ejml-vector",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
ref = "src/jvmMain/kotlin/space/kscience/kmath/ejml/EjmlVector.kt"
) { "Point implementations." }

feature(
id = "ejml-matrix",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
ref = "src/jvmMain/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt"
) { "Matrix implementation." }

feature(
id = "ejml-linear-space",
ref = "src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
ref = "src/jvmMain/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt"
) { "LinearSpace implementations." }
}
4 changes: 2 additions & 2 deletions kmath-kotlingrad/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ readme {

feature(
"differentiable-mst-expression",
"src/main/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt",
"src/jvmMain/kotlin/space/kscience/kmath/kotlingrad/KotlingradExpression.kt",
) {
"MST based DifferentiableExpression."
}

feature(
"scalars-adapters",
"src/main/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt",
"src/jvmMain/kotlin/space/kscience/kmath/kotlingrad/scalarsAdapters.kt",
) {
"Conversions between Kotlin∇'s SFun and MST"
}
Expand Down

0 comments on commit af9c621

Please sign in to comment.