Class AbstractRandomGenerator
- java.lang.Object
 - 
- org.apache.commons.math.random.AbstractRandomGenerator
 
 
- 
- All Implemented Interfaces:
 RandomGenerator
public abstract class AbstractRandomGenerator extends java.lang.Object implements RandomGenerator
Abstract class implementing theRandomGeneratorinterface. Default implementations for all methods other thannextDouble()andsetSeed(long)are provided.All data generation methods are based on
code nextDouble(). Concrete implementations must override this method and should provide better / more performant implementations of the other methods if the underlying PRNG supplies them.- Since:
 - 1.1
 
 
- 
- 
Constructor Summary
Constructors Constructor Description AbstractRandomGenerator()Construct a RandomGenerator. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the cache used by the default implementation ofnextGaussian().booleannextBoolean()Returns the next pseudorandom, uniformly distributedbooleanvalue from this random number generator's sequence.voidnextBytes(byte[] bytes)Generates random bytes and places them into a user-supplied byte array.abstract doublenextDouble()Returns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.floatnextFloat()Returns the next pseudorandom, uniformly distributedfloatvalue between0.0and1.0from this random number generator's sequence.doublenextGaussian()Returns the next pseudorandom, Gaussian ("normally") distributeddoublevalue with mean0.0and standard deviation1.0from this random number generator's sequence.intnextInt()Returns the next pseudorandom, uniformly distributedintvalue from this random number generator's sequence.intnextInt(int n)Returns a pseudorandom, uniformly distributedintvalue between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.longnextLong()Returns the next pseudorandom, uniformly distributedlongvalue from this random number generator's sequence.voidsetSeed(int seed)Sets the seed of the underlying random number generator using anintseed.voidsetSeed(int[] seed)Sets the seed of the underlying random number generator using anintarray seed.abstract voidsetSeed(long seed)Sets the seed of the underyling random number generator using alongseed. 
 - 
 
- 
- 
Method Detail
- 
clear
public void clear()
Clears the cache used by the default implementation ofnextGaussian(). Implemementations that do not override the default implementation ofnextGaussianshould call this method in the implementation ofsetSeed(long) 
- 
setSeed
public void setSeed(int seed)
Sets the seed of the underlying random number generator using anintseed.Sequences of values generated starting with the same seeds should be identical.
- Specified by:
 setSeedin interfaceRandomGenerator- Parameters:
 seed- the seed value
 
- 
setSeed
public void setSeed(int[] seed)
Sets the seed of the underlying random number generator using anintarray seed.Sequences of values generated starting with the same seeds should be identical.
- Specified by:
 setSeedin interfaceRandomGenerator- Parameters:
 seed- the seed value
 
- 
setSeed
public abstract void setSeed(long seed)
Sets the seed of the underyling random number generator using alongseed. Sequences of values generated starting with the same seeds should be identical.Implementations that do not override the default implementation of
nextGaussianshould include a call toclear()in the implementation of this method.- Specified by:
 setSeedin interfaceRandomGenerator- Parameters:
 seed- the seed value
 
- 
nextBytes
public void nextBytes(byte[] bytes)
Generates random bytes and places them into a user-supplied byte array. The number of random bytes produced is equal to the length of the byte array.The default implementation fills the array with bytes extracted from random integers generated using
nextInt().- Specified by:
 nextBytesin interfaceRandomGenerator- Parameters:
 bytes- the non-null byte array in which to put the random bytes
 
- 
nextInt
public int nextInt()
Returns the next pseudorandom, uniformly distributedintvalue from this random number generator's sequence. All 232 possibleintvalues should be produced with (approximately) equal probability.The default implementation provided here returns
(int) (nextDouble() * Integer.MAX_VALUE)- Specified by:
 nextIntin interfaceRandomGenerator- Returns:
 - the next pseudorandom, uniformly distributed 
intvalue from this random number generator's sequence 
 
- 
nextInt
public int nextInt(int n)
Returns a pseudorandom, uniformly distributedintvalue between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.The default implementation returns
(int) (nextDouble() * n- Specified by:
 nextIntin interfaceRandomGenerator- Parameters:
 n- the bound on the random number to be returned. Must be positive.- Returns:
 - a pseudorandom, uniformly distributed 
intvalue between 0 (inclusive) and n (exclusive). - Throws:
 NotStrictlyPositiveException- ifn <= 0.
 
- 
nextLong
public long nextLong()
Returns the next pseudorandom, uniformly distributedlongvalue from this random number generator's sequence. All 264 possiblelongvalues should be produced with (approximately) equal probability.The default implementation returns
(long) (nextDouble() * Long.MAX_VALUE)- Specified by:
 nextLongin interfaceRandomGenerator- Returns:
 - the next pseudorandom, uniformly distributed 
longvalue from this random number generator's sequence 
 
- 
nextBoolean
public boolean nextBoolean()
Returns the next pseudorandom, uniformly distributedbooleanvalue from this random number generator's sequence.The default implementation returns
nextDouble() <= 0.5- Specified by:
 nextBooleanin interfaceRandomGenerator- Returns:
 - the next pseudorandom, uniformly distributed
 
booleanvalue from this random number generator's sequence 
 
- 
nextFloat
public float nextFloat()
Returns the next pseudorandom, uniformly distributedfloatvalue between0.0and1.0from this random number generator's sequence.The default implementation returns
(float) nextDouble()- Specified by:
 nextFloatin interfaceRandomGenerator- Returns:
 - the next pseudorandom, uniformly distributed 
floatvalue between0.0and1.0from this random number generator's sequence 
 
- 
nextDouble
public abstract double nextDouble()
Returns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.This method provides the underlying source of random data used by the other methods.
- Specified by:
 nextDoublein interfaceRandomGenerator- Returns:
 - the next pseudorandom, uniformly distributed
  
doublevalue between0.0and1.0from this random number generator's sequence 
 
- 
nextGaussian
public double nextGaussian()
Returns the next pseudorandom, Gaussian ("normally") distributeddoublevalue with mean0.0and standard deviation1.0from this random number generator's sequence.The default implementation uses the Polar Method due to G.E.P. Box, M.E. Muller and G. Marsaglia, as described in D. Knuth, The Art of Computer Programming, 3.4.1C.
The algorithm generates a pair of independent random values. One of these is cached for reuse, so the full algorithm is not executed on each activation. Implementations that do not override this method should make sure to call
clear()to clear the cached value in the implementation ofsetSeed(long).- Specified by:
 nextGaussianin interfaceRandomGenerator- Returns:
 - the next pseudorandom, Gaussian ("normally") distributed
 
doublevalue with mean0.0and standard deviation1.0from this random number generator's sequence 
 
 - 
 
 -