1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// piecewise_constant_distribution::param
#include <iostream>
#include <random>
int main()
{
std::default_random_engine generator;
std::piecewise_constant_distribution<double> d1 ( 5, 0.0, 10.0, [](double x){return x;} );
std::piecewise_constant_distribution<double> d2 (d1.param());
// print two independent values:
std::cout << d1(generator) << std::endl;
std::cout << d2(generator) << std::endl;
return 0;
}
|