- Fast-rng now requires Java 8 or later.
- Introduces a new class
UniformRNGUtils
.- The method
UniformRNGUtils#nextInt(java.util.Random random, int bound)
is faster thanRandom#nextInt(int bound)
.
- The method
- Support beta random number generator
- Improve speed performance of
GammaRNG
- Support exponential random number generator
- Provide two implementations of Ziggurat algorithm for Gaussian RNG
GaussianRNG.FAST_RNG
andGaussianRNG.GENERAL_RNG
- Support gamma random number generator
- Initial release
- Support gaussian random number generator