|
libstdc++
|
Classes | |
| struct | param_type |
Public Types | |
| typedef _IntType | result_type |
Public Member Functions | |
| geometric_distribution (double __p=0.5) | |
| geometric_distribution (const param_type &__p) | |
| result_type | max () const |
| result_type | min () const |
| template<typename _UniformRandomNumberGenerator > | |
| geometric_distribution < _IntType >::result_type | operator() (_UniformRandomNumberGenerator &__urng, const param_type &__param) |
| template<typename _UniformRandomNumberGenerator > | |
| result_type | operator() (_UniformRandomNumberGenerator &__urng) |
| template<typename _UniformRandomNumberGenerator > | |
| result_type | operator() (_UniformRandomNumberGenerator &__urng, const param_type &__p) |
| double | p () const |
| param_type | param () const |
| void | param (const param_type &__param) |
| void | reset () |
A discrete geometric random number distribution.
The formula for the geometric probability density function is
where
is the parameter of the distribution.
| typedef _IntType std::geometric_distribution< _IntType >::result_type |
|
inline |
Returns the least upper bound value of the distribution.
Definition at line 3694 of file random.h.
References std::numeric_limits< _Tp >::max().
|
inline |
|
inline |
Generating functions.
Definition at line 3702 of file random.h.
References std::geometric_distribution< _IntType >::param().
|
inline |
|
inline |
Returns the parameter set of the distribution.
Definition at line 3672 of file random.h.
Referenced by std::geometric_distribution< _IntType >::operator()(), std::operator==(), and std::operator>>().
|
inline |
|
inline |