Creates an exponential distribution for use within SST. More...
#include "sst/core/rng/expon.h"
Public Member Functions | |
SSTExponentialDistribution (const double mn) | |
Creates an exponential distribution with a specific lambda. | |
SSTExponentialDistribution (const double mn, SSTRandom *baseDist) | |
Creates an exponential distribution with a specific lambda and a base random number generator. | |
~SSTExponentialDistribution () | |
Destroys the exponential distribution. | |
double | getNextDouble () |
Gets the next (random) double value in the distribution. | |
double | getLambda () |
Gets the lambda with which the distribution was created. | |
Protected Attributes | |
double | lambda |
Sets the lambda of the exponential distribution. | |
SSTRandom * | baseDistrib |
Sets the base random number generator for the distribution. | |
bool | deleteDistrib |
Controls whether the base distribution should be deleted when this class is destructed. |
Creates an exponential distribution for use within SST.
This distribution is the same across platforms and compilers.
SST::RNG::SSTExponentialDistribution::SSTExponentialDistribution | ( | const double | mn | ) | [inline] |
Creates an exponential distribution with a specific lambda.
mn | The lambda of the exponential distribution |
References baseDistrib, deleteDistrib, and lambda.
SST::RNG::SSTExponentialDistribution::SSTExponentialDistribution | ( | const double | mn, | |
SSTRandom * | baseDist | |||
) | [inline] |
Creates an exponential distribution with a specific lambda and a base random number generator.
mn | The lambda of the exponential distribution | |
baseDist | The base random number generator to take the distribution from. |
References baseDistrib, deleteDistrib, and lambda.
double SST::RNG::SSTExponentialDistribution::getLambda | ( | ) | [inline] |
Gets the lambda with which the distribution was created.
References lambda.
double SST::RNG::SSTExponentialDistribution::getNextDouble | ( | ) | [inline, virtual] |
Gets the next (random) double value in the distribution.
Implements SST::RNG::SSTRandomDistribution.
References baseDistrib, lambda, and SST::RNG::SSTRandom::nextUniform().