-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRand.cpp
237 lines (178 loc) · 5.21 KB
/
Rand.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*
* Rand.cpp
*
* Created on: Apr 11, 2020
* Author: ans
*/
#include "Rand.h"
// constructor for using the default algorithm (or setting it later)
Rand::Rand()
: algo(RAND_ALGO_STD_RAND),
byteMin(0),
byteMax(std::numeric_limits<unsigned char>::max()),
byteHalf(std::numeric_limits<unsigned char>::max() / 2),
intMin(0),
intMax(std::numeric_limits<int>::max()),
intHalf(std::numeric_limits<int>::max() / 2),
realMin(0.),
realMax(1.),
realHalf(.5),
lehmer(0) {
const auto defaultSeed = std::random_device()();
std::srand(defaultSeed);
this->mt.seed(defaultSeed);
this->lehmer = defaultSeed;
}
// constructor setting the algorithm
Rand::Rand(Algo algo) : Rand() {
this->setAlgo(algo);
}
// destructor stub
Rand::~Rand() {}
// set the seed ONLY for the currently selected algorithm
void Rand::seed(unsigned int s) {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
std::srand(s);
break;
case RAND_ALGO_STD_MT19937:
this->mt.seed(s);
break;
case RAND_ALGO_LEHMER32:
this->lehmer = s;
break;
}
}
// set the current algorithm
void Rand::setAlgo(Algo value) {
if(value >= RAND_ALGO_NUM)
throw std::runtime_error("Invalid pseudo-random generation algorithm: " + std::to_string(value));
this->algo = value;
}
// get the current algorithm
Rand::Algo Rand::getAlgo() const {
return this->algo;
}
// get the name of the current algorithm
std::string Rand::str() const {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
return "std::rand";
case RAND_ALGO_STD_MT19937:
return "std::mt19937";
case RAND_ALGO_LEHMER32:
return "lehmer32";
}
return "undefined";
}
// set the limits for pseudo-random byte creation (default: 0 to std::numeric_limits<unsigned char>::max())
void Rand::setByteLimits(unsigned char from, unsigned char to) {
if(from > to) {
if(this->byteMin == from && this->byteMax == to)
return;
this->byteMin = to;
this->byteMax = from;
}
else {
if(this->byteMin == to && this->byteMax == from)
return;
this->byteMin = from;
this->byteMax = to;
}
this->byteHalf = static_cast<unsigned char>((this->byteMax - this->byteMin) / 2);
std::uniform_int_distribution<unsigned char> newByteDist(this->byteMin, this->byteMax);
std::swap(this->byteDist, newByteDist);
}
// set the limits for pseudo-random integer creation (default: 0 to std::numeric_limits<int>::max())
void Rand::setIntLimits(int from, int to) {
if(from > to) {
if(this->intMin == from && this->intMax == to)
return;
this->intMin = to;
this->intMax = from;
}
else {
if(this->intMin == to && this->intMax == from)
return;
this->intMin = from;
this->intMax = to;
}
this->intHalf = (this->intMax - this->intMin) / 2;
std::uniform_int_distribution<int> newIntDist(this->intMin, this->intMax);
std::swap(this->intDist, newIntDist);
}
// set the limits for pseudo-random float creation (default: 0 to 1)
void Rand::setRealLimits(double from, double to) {
if(from > to) {
if(this->realMin == from && this->realMax == to)
return;
this->realMin = to;
this->realMax = from;
}
else {
if(this->realMin == to && this->realMax == from)
return;
this->realMin = from;
this->realMax = to;
}
this->realHalf = (this->realMax - this->realMin) / 2;
std::uniform_real_distribution<double> newRealDist(this->realMin, this->realMax);
std::swap(this->realDist, newRealDist);
}
// generate a pseudo-random byte
unsigned char Rand::generateByte() {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
return static_cast<unsigned char>(this->byteMin + std::rand() % (this->byteMax + 1 - this->byteMin));
case RAND_ALGO_STD_MT19937:
return this->byteDist(this->mt);
case RAND_ALGO_LEHMER32:
return static_cast<unsigned char>(this->byteMin + this->lehmer32() % (this->byteMax + 1 - this->byteMin));
}
return 0;
}
// generate a pseudo-random integer
int Rand::generateInt() {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
return this->intMin + std::rand() % (this->intMax + 1 - this->intMin);
case RAND_ALGO_STD_MT19937:
return this->intDist(this->mt);
case RAND_ALGO_LEHMER32:
return this->intMin + this->lehmer32() % (this->intMax + 1 - this->intMin);
}
return 0;
}
// generate a pseudo-random real number
double Rand::generateReal() {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
return this->realMin + static_cast<double>(std::rand()) / RAND_MAX * (this->realMax - this->realMin);
case RAND_ALGO_STD_MT19937:
return this->realDist(this->mt);
case RAND_ALGO_LEHMER32:
return this->realMin + static_cast<double>(this->lehmer32()) / 0xFFFFFFFF * (this->realMax - this->realMin);
}
return 0;
}
// generate a pseudo-random boolean value
bool Rand::generateBool() {
switch(this->algo) {
case RAND_ALGO_STD_RAND:
return std::rand() > RAND_MAX / 2;
case RAND_ALGO_STD_MT19937:
return this->byteDist(this->mt) - this->byteMin > this->byteHalf;
case RAND_ALGO_LEHMER32:
return this->lehmer32() > 0xFFFFFFFF / 2;
}
return false;
}
// 32-bit Lehmer generator
uint32_t Rand::lehmer32() {
this->lehmer += 0xe120fc15;
uint64_t tmp = static_cast<uint64_t>(this->lehmer) * 0x4a39b70d;
uint32_t m1 = static_cast<uint32_t>((tmp >> 32) ^ tmp);
tmp = static_cast<uint64_t>(m1) * 0x12fad5c9;
uint32_t m2 = static_cast<uint32_t>((tmp >> 32) ^ tmp);
return m2;
}