Implement Commons RNG-like samplers in kmath-prob module for Multiplatform #164

Merged
CommanderTvis merged 44 commits from feature/mp-samplers into dev 2021-03-31 09:25:44 +03:00
Showing only changes of commit 9c77f8f02f - Show all commits

View File

@ -63,6 +63,4 @@ fun main(): Unit = runBlocking(Dispatchers.Default) {
val directJob = async { runApacheDirect() }
println("KMath Chained: ${chainJob.await()}")
println("Apache Direct: ${directJob.await()}")
val normal = GaussianSampler.of(7.0, 2.0)
val chain = normal.sample(generator).blocking()
}