Package org.apache.commons.math3.random
Class SynchronizedRandomGenerator
java.lang.Object
org.apache.commons.math3.random.SynchronizedRandomGenerator
- All Implemented Interfaces:
RandomGenerator
Any
RandomGenerator implementation can be thread-safe if it
is used through an instance of this class.
This is achieved by enclosing calls to the methods of the actual
generator inside the overridden synchronized methods of this
class.- Since:
- 3.1
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a synchronized wrapper for the givenRandomGeneratorinstance. -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns 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.doubleReturns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.floatReturns the next pseudorandom, uniformly distributedfloatvalue between0.0and1.0from this random number generator's sequence.doubleReturns 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.voidsetSeed(long seed) Sets the seed of the underlying random number generator using alongseed.
-
Constructor Details
-
SynchronizedRandomGenerator
Creates a synchronized wrapper for the givenRandomGeneratorinstance.- Parameters:
rng- Generator whose methods will be called through their corresponding overridden synchronized version. To ensure thread-safety, the wrapped generator must not be used directly.
-
-
Method Details
-
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 void setSeed(long seed) Sets the seed of the underlying random number generator using alongseed.Sequences of values generated starting with the same seeds should be identical.
- 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.- 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.- 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.- 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).
-
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.- 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.- 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.- Specified by:
nextFloatin interfaceRandomGenerator- Returns:
- the next pseudorandom, uniformly distributed
floatvalue between0.0and1.0from this random number generator's sequence
-
nextDouble
public double nextDouble()Returns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.- 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.- Specified by:
nextGaussianin interfaceRandomGenerator- Returns:
- the next pseudorandom, Gaussian ("normally") distributed
doublevalue with mean0.0and standard deviation1.0from this random number generator's sequence
-