libstdc++: std::uniform_real_distribution< _RealType > Class Template Reference (original) (raw)

#include <[random](a00167%5Fsource.html)>

Public Member Functions
uniform_real_distribution ()
uniform_real_distribution (_RealType __a, _RealType __b=_RealType(1))
uniform_real_distribution (const param_type &__p)
template<typename _ForwardIterator , typename _UniformRandomNumberGenerator >
void __generate (_ForwardIterator __f, _ForwardIterator __t, _UniformRandomNumberGenerator &__urng)
template<typename _ForwardIterator , typename _UniformRandomNumberGenerator >
void __generate (_ForwardIterator __f, _ForwardIterator __t, _UniformRandomNumberGenerator &__urng, const param_type &__p)
template<typename _UniformRandomNumberGenerator >
void __generate (result_type *__f, result_type *__t, _UniformRandomNumberGenerator &__urng, const param_type &__p)
result_type a () const
result_type b () const
result_type max () const
result_type min () const
template<typename _UniformRandomNumberGenerator >
result_type operator() (_UniformRandomNumberGenerator &__urng)
template<typename _UniformRandomNumberGenerator >
result_type operator() (_UniformRandomNumberGenerator &__urng, const param_type &__p)
param_type param () const
void param (const param_type &__param)
void reset ()

template<typename _RealType = double>
class std::uniform_real_distribution< _RealType >

Uniform continuous distribution for random numbers.

A continuous random distribution on the range [min, max) with equal probability throughout the range. The URNG should be real-valued and deliver number in the range [0, 1).

Since

C++11

Definition at line 1881 of file random.h.

result_type

template<typename _RealType = double>

The type of the range of the distribution.

Definition at line 1888 of file random.h.

template<typename _RealType = double>

Constructs a uniform_real_distribution object.

The lower bound is set to 0.0 and the upper bound to 1.0

Definition at line 1933 of file random.h.

uniform_real_distribution() [2/3]

template<typename _RealType = double>

Constructs a uniform_real_distribution object.

Parameters

__a [IN] The lower bound of the distribution.
__b [IN] The upper bound of the distribution.

Definition at line 1942 of file random.h.

uniform_real_distribution() [3/3]

template<typename _RealType = double>

__generate() [1/3]

template<typename _RealType = double>

template<typename _ForwardIterator , typename _UniformRandomNumberGenerator >

void std::uniform_real_distribution< _RealType >::__generate ( _ForwardIterator __f, _ForwardIterator __t, _UniformRandomNumberGenerator & __urng ) inline

__generate() [2/3]

template<typename _RealType = double>

template<typename _ForwardIterator , typename _UniformRandomNumberGenerator >

__generate() [3/3]

template<typename _RealType = double>

template<typename _UniformRandomNumberGenerator >

a()

template<typename _RealType = double>

b()

template<typename _RealType = double>

max()

template<typename _RealType = double>

Returns the inclusive upper bound of the distribution range.

Definition at line 1993 of file random.h.

min()

template<typename _RealType = double>

Returns the inclusive lower bound of the distribution range.

Definition at line 1986 of file random.h.

operator()() [1/2]

template<typename _RealType = double>

template<typename _UniformRandomNumberGenerator >

operator()() [2/2]

template<typename _RealType = double>

template<typename _UniformRandomNumberGenerator >

param() [1/2]

template<typename _RealType = double>

param() [2/2]

template<typename _RealType = double>

Sets the parameter set of the distribution.

Parameters

__param The new parameter set of the distribution.

Definition at line 1979 of file random.h.

reset()

template<typename _RealType = double>

Resets the distribution state.

Does nothing for the uniform real distribution.

Definition at line 1957 of file random.h.

operator==

template<typename _RealType = double>

Return true if two uniform real distributions have the same parameters.

Definition at line 2041 of file random.h.


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