12#ifndef SST_CORE_RNG_DISTRIB_H
13#define SST_CORE_RNG_DISTRIB_H
15#include "sst/core/serialization/serializable.h"
Definition serializable.h:24
This class is basically a wrapper for objects to declare the order in which their members should be s...
Definition serializer.h:45
Base class of statistical distributions in SST.
Definition distrib.h:24
virtual double getNextDouble()=0
Obtains the next double from the distribution.
virtual ~RandomDistribution()
Destroys the distribution.
Definition distrib.h:36
RandomDistribution()
Creates the base (abstract) class of a distribution.
Definition distrib.h:41