From af9c62111b7dc6984d2c1399bff01a9611567e1b Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Mon, 27 Jan 2025 09:35:12 -0800 Subject: [PATCH] Update feature source references Signed-off-by: Emmanuel Ferdman --- README.md | 4 ++-- kmath-ejml/build.gradle.kts | 6 +++--- kmath-kotlingrad/build.gradle.kts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d9f853e5b..45dd1c27e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/kmath-ejml/build.gradle.kts b/kmath-ejml/build.gradle.kts index 003d5d56e..9190c59ff 100644 --- a/kmath-ejml/build.gradle.kts +++ b/kmath-ejml/build.gradle.kts @@ -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." } } \ No newline at end of file diff --git a/kmath-kotlingrad/build.gradle.kts b/kmath-kotlingrad/build.gradle.kts index 924911219..fed60b417 100644 --- a/kmath-kotlingrad/build.gradle.kts +++ b/kmath-kotlingrad/build.gradle.kts @@ -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" }