DUNE: Uniform Navigational Environment
2020.01.0
|
A RNG based on the use of special character device '/dev/urandom' ('/dev/random' is not considered due to possible blocking behavior).
Usually it provide true RNG or high performance pseudo-RNG e.g. for chryptographic applications.
IMPORTANT NOTES:
Public Member Functions | |
KernelDevice () | |
~KernelDevice () | |
int32_t | random (void) |
double | uniform (void) |
void | seed (int32_t value) |
Public Member Functions inherited from DUNE::Math::Random::Generator | |
virtual | ~Generator () |
double | uniform (double a, double b) |
double | gaussian (void) |
double | gaussian (double mu, double sigma) |
void | ballU (double radius, double *x, double *y) |
void | ballG (double sigma, double *x, double *y) |
Static Public Member Functions | |
static bool | available (void) |
Static Public Member Functions inherited from DUNE::Math::Random::Generator | |
static int32_t | arbitrarySeed (void) |
Additional Inherited Members | |
Static Public Attributes inherited from DUNE::Math::Random::Generator | |
static const int32_t | c_max_random |
DUNE::Math::Random::KernelDevice::KernelDevice | ( | void | ) |
Constructor.
DUNE::Math::Random::KernelDevice::~KernelDevice | ( | void | ) |
Destructor.
|
static |
Indicates if facility is available.
It will return 'true' is the operating system device file '/dev/urandom' exists.
References DUNE::FileSystem::Path::isDevice().
Referenced by DUNE::Math::Random::Generator::arbitrarySeed().
|
virtual |
Generate random integer number, as per the general contract of the base class.
Implements DUNE::Math::Random::Generator.
References DUNE::Math::Random::Generator::c_max_random.
Referenced by DUNE::Math::Random::Generator::arbitrarySeed().
|
virtual |
Seed method, with no effect for this class.
It is only provided to comply with general contract of base class.
Implements DUNE::Math::Random::Generator.
|
virtual |
Generate random floating point number, as per the general contract of the base class.
Reimplemented from DUNE::Math::Random::Generator.