Class implements RANLUX RNG. More...
#include <RANLUX.hpp>
Public Member Functions | |
| RANLUX () | |
| Constructor. More... | |
| RANLUX (const RANLUX &) | |
| Copy constructor. More... | |
| RANLUX & | operator= (RANLUX) |
| Copy assignment operator. More... | |
| virtual double | getRandom () |
| generate one random variable from uniform distribution. More... | |
| virtual std::vector< double > | getRandoms (int) |
| generate one random variable from uniform distribution. More... | |
| virtual void | setSeed (unsigned int) |
| sets seed of RNG More... | |
| virtual RANLUX * | clone () const |
| Virtual copy constructor. More... | |
| virtual | ~RANLUX () |
| destructor More... | |
Public Member Functions inherited from julian::UniformRNG | |
| virtual | ~UniformRNG () |
| destructor More... | |
Private Attributes | |
| gsl_rng * | rnd_ |
| GSL random number generator. More... | |
Detailed Description
Class implements RANLUX RNG.
Class implements RANLUX algorithm of Luscher See [29]
- Remarks
- Class uses algorithms implemented in GSL
Constructor & Destructor Documentation
| julian::RANLUX::RANLUX | ( | ) |
Constructor.
in constructor we create the GSL RANLUX algorithm
| julian::RANLUX::RANLUX | ( | const RANLUX & | orig | ) |
Copy constructor.
One need to explicitly define copy constructor to avoid memory-leak.
|
virtual |
destructor
One need to explicitly define destructor to avoid memory-leak.
Member Function Documentation
|
virtual |
Virtual copy constructor.
Method is an implementation of virtual copy constructor.
Reimplemented from julian::UniformRNG.
|
virtual |
generate one random variable from uniform distribution.
Implements julian::UniformRNG.
|
virtual |
generate one random variable from uniform distribution.
Implements julian::UniformRNG.
Copy assignment operator.
One need to explicitly define Copy constructor to avoid memory-leak.
|
virtual |
sets seed of RNG
Implements julian::UniformRNG.
Member Data Documentation
|
private |
GSL random number generator.
The documentation for this class was generated from the following files:
- C:/Unix/home/OEM/jULIAN/src/mathematics/RNGs/RANLUX.hpp
- C:/Unix/home/OEM/jULIAN/src/mathematics/RNGs/RANLUX.cpp

Public Member Functions inherited from
1.8.11