
fj.LcgRng Maven / Gradle / Ivy
package fj;
/**
* Created by MarkPerry on 7/07/2014.
*
* https://en.wikipedia.org/wiki/Linear_congruential_generator
*/
public class LcgRng extends Rng {
private final Long seed;
public LcgRng() {
this(System.currentTimeMillis());
}
public LcgRng(long s) {
seed = s;
}
public final long getSeed() {
return seed;
}
public final P2 nextInt() {
P2 p = nextLong();
int i = (int) p._2().longValue();
return P.p(p._1(), i);
}
public final P2 nextLong() {
P2 p = nextLong(seed);
return P.p(new LcgRng(p._1()), p._2());
}
/**
*
* @param seed
* @return Product of Seed and value
*/
static P2 nextLong(long seed) {
long newSeed = (seed * 0x5DEECE66DL + 0xBL) & 0xFFFFFFFFFFFFL;
long n = newSeed >>> 16;
return P.p(newSeed, n);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy