-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreal_values.cpp
178 lines (162 loc) · 5.1 KB
/
real_values.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <catch.hpp>
#include <randomcpp.hpp>
#include <map>
static void display_histogram(std::map<int, int> const & hist) {
for (auto const & i : hist) {
std::printf("%d: %s\n", i.first, std::string(i.second / 15, '*').c_str());
}
}
static int key_for_max_value(std::map<int, int> const & hist) {
std::pair<int, int> max{0, -1};
for (auto const & i : hist) {
if (i.second > max.second) {
max = i;
}
}
return max.first;
}
TEST_CASE( "Test for random real values", "[real values]" ) {
randomcpp::seed(1);
SECTION ( "random() is always in correct range" ) {
float min = 5, max = 0;
for (unsigned i=0; i < 1000; ++i) {
auto r(randomcpp::random());
REQUIRE(r >= 0.0f);
REQUIRE(r < 1.0f);
min = std::min(min, r);
max = std::max(max, r);
}
// Require one of the values was close to 0, 1
REQUIRE(max > 0.9999f);
REQUIRE(min < 0.0015f);
}
SECTION ( "uniform range is correct (a<b)" ) {
float high = 2.5;
for (float low=0.5; low < 10.0; low += 0.8) {
float min = high, max = low;
for (unsigned i=0; i < 100; i++) {
auto r(randomcpp::uniform(low, high));
REQUIRE(r <= high);
REQUIRE(r >= low);
min = std::min(min, r);
max = std::max(max, r);
}
// Require one of the values was close to high/low
REQUIRE(max > (high - 0.5));
REQUIRE(min < (min + 0.5));
high += 1.3;
}
}
SECTION ( "uniform range is correct (a>b)" ) {
float high = 2.5;
for (float low=0.5; low < 10.0; low += 0.8) {
float min = high, max = low;
for (unsigned i=0; i < 100; i++) {
auto r(randomcpp::uniform(high, low));
REQUIRE(r <= high);
REQUIRE(r >= low);
min = std::min(min, r);
max = std::max(max, r);
}
// Require one of the values was close to high/low
REQUIRE(max > (high - 0.5));
REQUIRE(min < (min + 0.5));
high += 1.3;
}
}
SECTION ( "triangular dist (default)" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::triangular()*10)];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 5);
}
SECTION ( "triangular dist (alternate range)" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::triangular(0.0, 10.0))];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 5);
}
SECTION ( "triangular dist (alternate mode)" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::triangular(0.0, 1.0, 0.2)*10)];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 2);
}
SECTION ( "betavariate dist" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::betavariate(2.0, 5.0)*10)];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 2);
}
SECTION ( "betavariate dist (alt)" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::betavariate(2, 2)*10)];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 5);
}
SECTION ( "expovariate dist (lambda=9)" ) {
randomcpp::reset();
float mean = 0;
for (int n=0; n < 5000; n++) {
mean += randomcpp::expovariate(1.0f/9);
}
mean /= 5000;
REQUIRE(std::round(mean) == 9.0f);
}
SECTION ( "gammavariate dist" ) {
randomcpp::reset();
std::map<int, int> histogram;
for (int n=0; n < 5000; n++) {
++histogram[std::round(randomcpp::gammavariate(1.0, 1.0)*10)];
}
//display_histogram(histogram);
REQUIRE(key_for_max_value(histogram) == 1);
}
SECTION ( "guassian dist" ) {
randomcpp::reset();
float mean = 0;
float stddev = 0;
for (int n=0; n < 10000; ++n) {
float u = randomcpp::gauss(5.0, 2.0);
mean += u;
float delta = u - 5.0f; // 5.0 is assume mean
stddev += delta*delta;
}
mean /= 10000;
stddev /= 10000;
stddev = std::sqrt(stddev);
REQUIRE(std::round(mean) == 5.0f);
REQUIRE(std::round(stddev) == 2.0f);
}
SECTION ( "normalvariate dist" ) {
randomcpp::reset();
float mean = 0;
float stddev = 0;
for (int n=0; n < 10000; ++n) {
float u = randomcpp::normalvariate(8.0, 4.0);
mean += u;
float delta = u - 8.0f; // 8 is assume mean
stddev += delta*delta;
}
mean /= 10000;
stddev /= 10000;
stddev = std::sqrt(stddev);
REQUIRE(std::round(mean) == 8.0f);
REQUIRE(std::round(stddev) == 4.0f);
}
}