fj.LcgRng Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionaljava Show documentation
Show all versions of functionaljava Show documentation
Functional Java is an open source library that supports closures for the Java programming language
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 long getSeed() {
return seed;
}
public P2 nextInt() {
P2 p = nextLong();
int i = (int) p._2().longValue();
return P.p(p._1(), i);
}
public 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 = (Long) (newSeed >>> 16);
return P.p(newSeed, n);
}
}