diff options
| author | nasr <nsrddyn@gmail.com> | 2025-11-26 23:11:25 +0100 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2025-11-26 23:11:25 +0100 |
| commit | 5c90505fe7b6566049bead5e36a5e3f73d844413 (patch) | |
| tree | d65a6402dd93d0e8ccb464eb5eab382e625a67d1 /src/Tests | |
| parent | d6f99d058b34d5b6fbc3f630bf491b302cdf324f (diff) | |
chore: file refactor, imported zio
next steps are running the threads multithreaded and measuring for
errors
Diffstat (limited to 'src/Tests')
| -rw-r--r-- | src/Tests/Tests.scala | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Tests/Tests.scala b/src/Tests/Tests.scala new file mode 100644 index 0000000..88fd139 --- /dev/null +++ b/src/Tests/Tests.scala @@ -0,0 +1,28 @@ +package com.nsrddyn.Tests + +import com.nsrddyn.fpu.CholeskyDecomposition +import scala.collection.immutable.ListSet +import zio._ + +class TestsRunner extends ZIOAppDefault { + + def run = + println("Hello world") + + +} + +class CholeskyDecompositionTest { + + def test(): Unit = { + + val cdp: CholeskyDecomposition = new CholeskyDecomposition + val matrix: Vector[Vector[Int]] = Vector(Vector(1,2,3),Vector(1,2,3),Vector(1,2,3)) + + println(cdp.run(matrix)) + + } + + + +} |
