bernoulli_distribution::bernoulli_distribution
Distribuce konstrukce.
bernoulli_distribution(double p0 = 0.5);
explicit bernoulli_distribution(const param_type& par0);
Parametry
p0
Parametr rozdělení p.par0
Parametr balíček používá k distribuci.
Poznámky
Předběžná podmínka:0.0 ≤ p0 && p0 ≤ 1.0
První konstruktoru objektu konstrukce, jejichž uložená hodnota stored_p obsahuje hodnotu p0.
Konstrukce druhé konstruktoru objektu, jehož uložené parametry jsou inicializovány z par0.
Příklad
// std_tr1__random__bernoulli_distribution_construct.cpp
// compile with: /EHsc
#include <random>
#include <iostream>
typedef std::mt19937 Myeng;
typedef std::bernoulli_distribution Mydist;
int main()
{
Myeng eng;
Mydist dist(0.6);
Mydist::input_type engval = eng();
Mydist::result_type distval = dist(eng);
distval = distval; // to quiet "unused" warnings
engval = engval;
std::cout << "p == " << dist.p() << std::endl;
dist.reset(); // discard any cached values
std::cout << "a random value == " << std::boolalpha
<< dist(eng) << std::endl;
std::cout << "a random value == " << std::boolalpha
<< dist(eng) << std::endl;
std::cout << "a random value == " << std::boolalpha
<< dist(eng) << std::endl;
return (0);
}
Požadavky
Záhlaví: <random>
Obor názvů: std