Share via


bernoulli_distribution::bernoulli_distribution

Constructs the distribution.

explicit bernoulli_distribution(double p = 0.5);

explicit bernoulli_distribution(const param_type& parm);

Parameters

  • p
    The stored p distribution parameter.

  • parm
    The parameter structure used to construct the distribution.

Remarks

**Precondition:**0.0 ≤ p ≤ 1.0

The first constructor constructs an object whose stored p value holds the value p.

The second constructor constructs an object whose stored parameters are initialized from parm. You can obtain and set the current parameters of an existing distribution by calling the param() member function.

For more information and a code example, see binomial_distribution Class.

Requirements

Header: <random>

Namespace: std

See Also

Reference

<random>

bernoulli_distribution Class