BinomialDistImpl(Zone aZone)
The createWithDefaults method creates a distribution object with a default set of seeds and parameters, and its own private generator.
BinomialDistImpl(Zone aZone,
SimpleRandomGenerator generator,
int aNumTrials,
double aProbability)
Use this create message if the generator to be attached is a Simple one: and both the number of trials and the probability are to be set at create time:
BinomialDistImpl(Zone aZone,
SplitRandomGenerator generator,
int vGen,
int aNumTrials,
double aProbability)
Use this create message if the generator to be attached is a Split one and both the number of trials and the probability are to be set at create time:
Methods implemented by this class for interface swarm.random.UnsignedDistribution
public BinomialDistImpl(Zone aZone,
SplitRandomGenerator generator,
int vGen,
int aNumTrials,
double aProbability)
Use this create message if the generator to be attached is a Split one and both the number of trials and the probability are to be set at create time:
BinomialDistImpl
public BinomialDistImpl(Zone aZone,
SimpleRandomGenerator generator,
int aNumTrials,
double aProbability)
Use this create message if the generator to be attached is a Simple one: and both the number of trials and the probability are to be set at create time: