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

fj.LcgRng Maven / Gradle / Ivy

Go to download

Functional Java is an open source library that supports closures for the Java programming language

There is a newer version: 5.0
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy