SST
14.0.0
StructuralSimulationToolkit
|
Creates an Poisson distribution for use within SST. More...
#include "sst/core/rng/poisson.h"
Public Member Functions | |
PoissonDistribution (const double mn) | |
Creates an Poisson distribution with a specific lambda. More... | |
PoissonDistribution (const double mn, SST::RNG::Random *baseDist) | |
Creates an Poisson distribution with a specific lambda and a base random number generator. More... | |
~PoissonDistribution () | |
Destroys the Poisson distribution. | |
double | getNextDouble () override |
Gets the next (random) double value in the distribution. More... | |
double | getLambda () |
Gets the lambda with which the distribution was created. More... | |
PoissonDistribution () | |
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 |
Data Fields | |
ImplementSerializable(PoissonDistribution) protected SST::RNG::Random * | baseDistrib |
Serialization macro. More... | |
bool | deleteDistrib |
Controls whether the base distribution should be deleted when this class is destructed. | |
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) |
Creates an Poisson distribution for use within SST.
This distribution is the same across platforms and compilers.
|
inline |
Creates an Poisson distribution with a specific lambda.
mn | The lambda of the Poisson distribution |
|
inline |
Creates an Poisson distribution with a specific lambda and a base random number generator.
lambda | The lambda of the Poisson distribution |
baseDist | The base random number generator to take the distribution from. |
|
inline |
Default constructor.
FOR SERIALIZATION ONLY.
|
inline |
Gets the lambda with which the distribution was created.
|
inlineoverridevirtual |
Gets the next (random) double value in the distribution.
Implements SST::RNG::RandomDistribution.
ImplementSerializable (PoissonDistribution) protected SST::RNG::Random* SST::RNG::PoissonDistribution::baseDistrib |
Serialization macro.
Sets the lambda of the Poisson distribution. Sets the base random number generator for the distribution.