diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-11-25 20:28:57 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-11-25 20:28:57 +0100 |
| commit | e70ce01ce40d4e3fc86f887913ee1c7fa6ffb50e (patch) | |
| tree | 0db433d1c3cf6d2b3b7229819b40a107824016de /src/main/scala/com/nsrddyn/Tests | |
| parent | 409b76a88e589cbd7a8dfd9d0aad8152bb00d0bb (diff) | |
feature: checkpoint
Diffstat (limited to 'src/main/scala/com/nsrddyn/Tests')
| -rw-r--r-- | src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala b/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala new file mode 100644 index 0000000..340caa3 --- /dev/null +++ b/src/main/scala/com/nsrddyn/Tests/CholeskyDecompositionTest.scala @@ -0,0 +1,16 @@ +package com.nsrddyn.Tests + +import com.nsrddyn.fpu.CholeskyDecomposition +import scala.collection.immutable.ListSet + +class CholeskyDecompositionTest extends CholeskyDecomposition { + + def test(): Unit = { + + val cdp: CholeskyDecomposition = new CholeskyDecomposition + val matrix: List[List[Int]] = List.empty[List[Int]] + + println(cdp.run(matrix)) + + } +} |
