-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.cpp
30 lines (24 loc) · 1.01 KB
/
random.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <iostream>
#include <boost/random.hpp>
using namespace std;
int main()
{
boost::random::mt19937 rng; // produces randomness out of thin air
// see pseudo-random number generators
boost::random::uniform_int_distribution<> six(1,6);
// distribution that maps to 1..6
// see random number distributions
cout <<six(rng) << endl;; // simulate rolling a die
double probabilities[] = {
0.5, 0.1, 0.1, 0.1, 0.1, 0.1
};
boost::random::discrete_distribution<> dist(probabilities);
for (int i = 0; i < 10; i++) cout << dist(rng) << endl;
boost::random::uniform_smallint<>si(1, 100);
for (int i = 0; i < 10; i++) cout << si(rng) << endl;
boost::random::uniform_01<>uniform;
for (int i = 0; i < 10; i++) cout << uniform(rng) << endl;
boost::random::uniform_real_distribution<>rd(0.1, 0.6);
for (int i = 0; i < 10; i++) cout << rd(rng) << endl;
return 0;
}