SST
14.0.0
StructuralSimulationToolkit
|
Implements a distribution which always returns a constant value (provided by the user). More...
#include "sst/core/rng/constant.h"
Public Member Functions | |
ConstantDistribution (double v) | |
Creates a constant distribution which returns a constant value. More... | |
~ConstantDistribution () | |
Destroys the constant distribution. | |
double | getNextDouble () override |
Gets the next double for the distribution, in this case it will return the constant value specified by the user. More... | |
double | getMean () |
Gets the constant value for the distribution. More... | |
ConstantDistribution () | |
Default constructor. More... | |
void | serialize_order (SST::Core::Serialization::serializer &ser) override |
Serialization function for checkpoint. | |
Public Member Functions inherited from SST::RNG::RandomDistribution | |
virtual | ~RandomDistribution () |
Destroys the distribution. | |
RandomDistribution () | |
Creates the base (abstract) class of a distribution. | |
virtual void | serialize_order (SST::Core::Serialization::serializer &UNUSED(ser)) override |
Public Member Functions inherited from SST::Core::Serialization::serializable | |
virtual const char * | cls_name () const =0 |
virtual uint32_t | cls_id () const =0 |
virtual std::string | serialization_name () const =0 |
Additional Inherited Members | |
Static Public Attributes inherited from SST::Core::Serialization::serializable | |
static constexpr uint32_t | NullClsId = std::numeric_limits<uint32_t>::max() |
Protected Types inherited from SST::Core::Serialization::serializable | |
enum | cxn_flag_t { ConstructorFlag } |
Static Protected Member Functions inherited from SST::Core::Serialization::serializable | |
static void | serializable_abort (uint32_t line, const char *file, const char *func, const char *obj) |
Implements a distribution which always returns a constant value (provided by the user).
This can be used in situations where the user may not want to apply a distribution.
|
inline |
Creates a constant distribution which returns a constant value.
v | Is the constant value the user wants returned by the distribution |
|
inline |
Default constructor.
FOR SERIALIZATION ONLY.
|
inline |
Gets the constant value for the distribution.
|
inlineoverridevirtual |
Gets the next double for the distribution, in this case it will return the constant value specified by the user.
Implements SST::RNG::RandomDistribution.