All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kyo.scheduler.util.XSRandom.scala Maven / Gradle / Ivy

There is a newer version: 0.12.0
Show newest version
package kyo.scheduler.util

import java.util.Random

private[kyo] object XSRandom extends Random {
    private val seeds = List.fill(32)(31L).toArray
    override def next(nbits: Int): Int = {
        val idx = (Thread.currentThread().hashCode() & 31).toInt
        var x   = seeds(idx)
        x ^= (x << 21)
        x ^= (x >>> 35)
        x ^= (x << 4)
        seeds(idx) = x
        x &= ((1L << nbits) - 1)
        x.asInstanceOf[Int]
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy