summaryrefslogtreecommitdiff
path: root/src/main/scala/com/nsrddyn/Tests
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2025-11-25 23:28:17 +0100
committernasr <nsrddyn@gmail.com>2025-11-25 23:28:17 +0100
commitfcad65fc51673898054cc31db1a79dcb3718b6aa (patch)
tree5dedf8b92bf53029c5faed8eaf51b1dee504af04 /src/main/scala/com/nsrddyn/Tests
parente70ce01ce40d4e3fc86f887913ee1c7fa6ffb50e (diff)
feature: cholesky decompostiion finised
i said finished but i get an out of bounds exception lololol
Diffstat (limited to 'src/main/scala/com/nsrddyn/Tests')
-rw-r--r--src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala b/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala
index 340caa3..8361547 100644
--- a/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala
+++ b/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala
@@ -8,9 +8,12 @@ class CholeskyDecompositionTest extends CholeskyDecomposition {
def test(): Unit = {
val cdp: CholeskyDecomposition = new CholeskyDecomposition
- val matrix: List[List[Int]] = List.empty[List[Int]]
+ val matrix: Vector[Vector[Int]] = Vector(Vector(1,2,3),Vector(1,2,3),Vector(1,2,3))
println(cdp.run(matrix))
}
+
+
+
}