SST  11.0.0
StructuralSimulationToolkit
SST::RNG::SSTExponentialDistribution Class Reference

Creates an exponential distribution for use within SST. More...

#include "sst/core/rng/expon.h"

Inheritance diagram for SST::RNG::SSTExponentialDistribution:
SST::RNG::SSTRandomDistribution

Public Member Functions

 SSTExponentialDistribution (const double mn)
 Creates an exponential distribution with a specific lambda. More...
 
 SSTExponentialDistribution (const double mn, SSTRandom *baseDist)
 Creates an exponential distribution with a specific lambda and a base random number generator. More...
 
 ~SSTExponentialDistribution ()
 Destroys the exponential distribution.
 
double getNextDouble ()
 Gets the next (random) double value in the distribution. More...
 
double getLambda ()
 Gets the lambda with which the distribution was created. More...
 
- Public Member Functions inherited from SST::RNG::SSTRandomDistribution
virtual ~SSTRandomDistribution ()
 Destroys the distribution.
 
 SSTRandomDistribution ()
 Creates the base (abstract) class of a distribution.
 

Protected Attributes

double lambda
 Sets the lambda of the exponential distribution.
 
SSTRandombaseDistrib
 Sets the base random number generator for the distribution.
 
bool deleteDistrib
 Controls whether the base distribution should be deleted when this class is destructed.
 

Detailed Description

Creates an exponential distribution for use within SST.

This distribution is the same across platforms and compilers.

Constructor & Destructor Documentation

SST::RNG::SSTExponentialDistribution::SSTExponentialDistribution ( const double  mn)
inline

Creates an exponential distribution with a specific lambda.

Parameters
mnThe lambda of the exponential distribution
SST::RNG::SSTExponentialDistribution::SSTExponentialDistribution ( const double  mn,
SSTRandom baseDist 
)
inline

Creates an exponential distribution with a specific lambda and a base random number generator.

Parameters
mnThe lambda of the exponential distribution
baseDistThe base random number generator to take the distribution from.

Member Function Documentation

double SST::RNG::SSTExponentialDistribution::getLambda ( )
inline

Gets the lambda with which the distribution was created.

Returns
The lambda which the user created the distribution with
double SST::RNG::SSTExponentialDistribution::getNextDouble ( )
inlinevirtual

Gets the next (random) double value in the distribution.

Returns
The next random double from the distribution

Implements SST::RNG::SSTRandomDistribution.


The documentation for this class was generated from the following file: