summaryrefslogtreecommitdiff
path: root/src/Tests/Tests.scala
blob: 88fd139778746c0438f55bf076820771c6604b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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))

  }



}