12 #ifndef SST_CORE_RNG_CONSTANT_H 13 #define SST_CORE_RNG_CONSTANT_H 84 #endif // SST_CORE_RNG_CONSTANT_H Definition: constant.h:21
This class is basically a wrapper for objects to declare the order in which their members should be s...
Definition: serializer.h:43
void serialize_order(SST::Core::Serialization::serializer &ser) override
Serialization function for checkpoint.
Definition: constant.h:65
double getNextDouble() override
Gets the next double for the distribution, in this case it will return the constant value specified b...
Definition: constant.h:49
ConstantDistribution()
Default constructor.
Definition: constant.h:60
double getMean()
Gets the constant value for the distribution.
Definition: constant.h:55
~ConstantDistribution()
Destroys the constant distribution.
Definition: constant.h:42
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:29
ConstantDistribution(double v)
Creates a constant distribution which returns a constant value.
Definition: constant.h:37