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