12 #ifndef _H_SST_CORE_RNG_EMPTY
13 #define _H_SST_CORE_RNG_EMPTY
19 using namespace SST::RNG;
Base class of statistical distributions in SST.
Definition: distrib.h:24
Implements a distribution which always returns a constant value (provided by the user).
Definition: constant.h:30
double getMean()
Gets the constant value for the distribution.
Definition: constant.h:62
double getNextDouble()
Gets the next double for the distribution, in this case it will return the constant value specified b...
Definition: constant.h:54
double mean
Describes the constant value to return from the distribution.
Definition: constant.h:70
~SSTConstantDistribution()
Destroys the constant distribution.
Definition: constant.h:45
SSTConstantDistribution(double v)
Creates a constant distribution which returns a constant value.
Definition: constant.h:37