-
Classes Class Description org.apache.commons.rng.sampling.distribution.BoxMullerGaussianSampler Since version 1.1. Please useBoxMullerNormalizedGaussianSampler
andGaussianSampler
instead.org.apache.commons.rng.sampling.distribution.BoxMullerLogNormalSampler Since version 1.1. Please useLogNormalSampler
instead.org.apache.commons.rng.sampling.distribution.SamplerBase Since version 1.1. Class intended for internal use only.
-
Methods Method Description org.apache.commons.rng.core.BaseProvider.checkStateSize(byte[], int) Method is used internally and should be made private in some future release.org.apache.commons.rng.core.util.NumberFactory.makeBoolean(int) Since version 1.2. Method has become obsolete following RNG-57.org.apache.commons.rng.core.util.NumberFactory.makeInt(long) Since version 1.2. Method has become obsolete following RNG-57.org.apache.commons.rng.sampling.distribution.PoissonSamplerCache.createPoissonSampler(UniformRandomProvider, double) org.apache.commons.rng.sampling.UnitSphereSampler.nextVector() org.apache.commons.rng.simple.RandomSource.create(RandomSource) It is preferred to use theRandomSource.create()
instance method.
-
Constructors Constructor Description org.apache.commons.rng.sampling.UnitSphereSampler(int, UniformRandomProvider)
-
Enum Constants Enum Constant Description org.apache.commons.rng.simple.RandomSource.XOR_SHIFT_1024_S Since 1.3, where it is recommended to useXOR_SHIFT_1024_S_PHI
instead due to its slightly better (more uniform) output.XOR_SHIFT_1024_S
is still quite usable but both are variants of the same algorithm and maintain their internal state identically. Their outputs are correlated and the two should not be used together when independent sequences are assumed.