summaryrefslogtreecommitdiff
path: root/src/Main.scala
blob: 39851cbced21213f863f01e6a112c1a9d4e19a95 (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
29
30
package com.nsrddyn

import com.nsrddyn.fpu.CholeskyDecomposition
import com.nsrddyn.Tests.CholeskyDecompositionTest
import java.time.Instant
import com.nsrddyn.alu.*
import com.nsrddyn.tools.Benchmark

enum Status:
  case PASS 
  case FAIL 


object Torque extends ZIOAppDefault {

  println("hello world")

  @main def main(args: String*): Unit =  { println("\u001b[2J\u001b[H")
    println("--- TORQUE STRESS TESTING UTILITY ---")

    var tester: CholeskyDecompositionTest = new CholeskyDecompositionTest
    println(tester.test())

  }

  var p: Prime = new Prime
  p.run()

}