Class Xoshiro256StarStar

java.lang.Object
java.util.Random
org.kink_lang.kink.internal.mod.random.Xoshiro256StarStar
All Implemented Interfaces:
Serializable, RandomGenerator

public class Xoshiro256StarStar extends Random
The pseudo random number generator of xoshiro256**. See http://prng.di.unimi.it/
See Also:
  • Constructor Details

    • Xoshiro256StarStar

      public Xoshiro256StarStar(long s0, long s1, long s2, long s3)
      Constructs the PRNG with the given state. Precondition: state must not be all zero.
      Parameters:
      s0 - the first 64 bits.
      s1 - the second 64 bits.
      s2 - the third 64 bits.
      s3 - the fourth 64 bits.
  • Method Details