|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.Random
edu.udo.cs.yale.tools.RandomGenerator
public class RandomGenerator
The global random number generator. This should be used for all random purposes of Yale to ensure that two runs of the same experiment provide the same results.
Field Summary | |
---|---|
private static java.lang.String |
ALPHABET
Use this alphabet for random String creation. |
private static RandomGenerator |
globalRandomGenerator
Global random number generator using the random number generator seed specified for the root operator (ExperimentOperator). |
private static long |
serialVersionUID
|
Constructor Summary | |
---|---|
private |
RandomGenerator()
Initializes the random number generator without a seed. |
|
RandomGenerator(long seed)
Initializes the random number generator with the given seed |
Method Summary | |
---|---|
static RandomGenerator |
getGlobalRandomGenerator()
Returns the global random number generator. |
static RandomGenerator |
getRandomGenerator(int seed)
Returns the global random number generator if the seed is negative and a new RandomGenerator with the given seed if the seed is positive or zero. |
static void |
init(Experiment experiment)
Instantiates the global random number generator and initializes it with the random number generator seed specified in the global
section of the configuration file. |
double |
nextDoubleInRange(double lowerBound,
double upperBound)
Returns the next pseudorandom, uniformly distributed double
value between lowerBound and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values). |
int |
nextIntInRange(int lowerBound,
int upperBound)
Returns the next pseudorandom, uniformly distributed int
value between lowerBound and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values). |
long |
nextLongInRange(long lowerBound,
long upperBound)
returns the next pseudorandom, uniformly distributed long
value between lowerBound and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values). |
java.lang.String |
nextString(int length)
Returns a random String of the given length. |
int |
randomIndex(double[] probs)
Returns a randomly selected integer between 0 and the length of the given array. |
Methods inherited from class java.util.Random |
---|
next, nextBoolean, nextBytes, nextDouble, nextFloat, nextGaussian, nextInt, nextInt, nextLong, setSeed |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
private static final java.lang.String ALPHABET
private static RandomGenerator globalRandomGenerator
Constructor Detail |
---|
private RandomGenerator()
public RandomGenerator(long seed)
seed
Method Detail |
---|
public static RandomGenerator getGlobalRandomGenerator()
public static RandomGenerator getRandomGenerator(int seed)
public static void init(Experiment experiment)
global
section of the configuration file. Should be invoked before the
experiment starts.
public double nextDoubleInRange(double lowerBound, double upperBound)
double
value between lowerBound
and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values).
public long nextLongInRange(long lowerBound, long upperBound)
long
value between lowerBound
and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values).
public int nextIntInRange(int lowerBound, int upperBound)
int
value between lowerBound
and upperBound
from this random number generator's sequence (exclusive of the interval
endpoint values).
public java.lang.String nextString(int length)
public int randomIndex(double[] probs)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |