libstdc++
|
#include <random.h>
Classes | |
struct | param_type |
Public Types | |
typedef _IntType | result_type |
Public Member Functions | |
geometric_distribution (const param_type &__p) | |
geometric_distribution (double __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 | 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) |
double | p () const |
param_type | param () const |
void | param (const param_type &__param) |
void | reset () |
Friends | |
bool | operator== (const geometric_distribution &__d1, const geometric_distribution &__d2) |
A discrete geometric random number distribution.
The formula for the geometric probability density function is
typedef _IntType std::geometric_distribution< _IntType >::result_type |
|
inline |
|
inlineexplicit |
|
inlineexplicit |
|
inline |
|
inline |
|
inline |
|
inline |
Returns the least upper bound value of the distribution.
Definition at line 4082 of file random.h.
References std::numeric_limits< _Tp >::max().
|
inline |
|
inline |
Generating functions.
Definition at line 4090 of file random.h.
References std::geometric_distribution< _IntType >::operator()().
Referenced by std::geometric_distribution< _IntType >::operator()().
geometric_distribution< _IntType >::result_type std::geometric_distribution< _IntType >::operator() | ( | _UniformRandomNumberGenerator & | __urng, |
const param_type & | __p | ||
) |
Definition at line 1044 of file bits/random.tcc.
|
inline |
|
inline |
Returns the parameter set of the distribution.
Definition at line 4060 of file random.h.
Referenced by std::operator>>().
|
inline |
|
inline |
|
friend |