GNU g++  v5.2.1
GNU Standard C++
Random Number Generators
Collaboration diagram for Random Number Generators:

Modules

 Uniform Distributions
 

Detailed Description

A function template for converting the output of a (integral) uniform random number generator to a floatng point result in the range [0-1).

These classes define objects which provide random or pseudorandom numbers, either from a discrete or a continuous interval. The random number generator supplied as a part of this library are all uniform random number generators which provide a sequence of random number uniformly distributed over their range.

A number generator is a function object with an operator() that takes zero arguments and returns a number.

A compliant random number generator must satisfy the following requirements.

Random Number Generator Requirements
To be documented.