生成一个伯努利分布。
class bernoulli_distribution {
public:
typedef int input_type;
struct param_type;
typedef bool result_type;
explicit bernoulli_distribution(double p0 = 0.5);
explicit bernoulli_distribution(const param_type& par0);
double p() const;
param_type param() const;
void param(const param_type& par0);
result_type min() const;
result_type max() const;
void reset();
template<class Engine>
result_type operator()(Engine& eng);
template<class Engine>
result_type operator()(Engine& eng,
const param_type& par0);
private:
const double stored_p; // exposition only
};
备注
选件类描述导致类型 bool的值的分发,返回与参数给定的概率的 true 构造函数。
要求
标头: <random>
命名空间: std
请参见
参考
bernoulli_distribution::bernoulli_distribution