|
@@ -13,12 +13,6 @@ Random::Random(int seed) : index(0) {
|
|
Random::Random() : Random(std::chrono::steady_clock::now().time_since_epoch().count()) {
|
|
Random::Random() : Random(std::chrono::steady_clock::now().time_since_epoch().count()) {
|
|
}
|
|
}
|
|
|
|
|
|
-float Random::nextFloat() {
|
|
|
|
- static constexpr int bits = sizeof(int) * 6;
|
|
|
|
- static constexpr int mask = (1 << bits) - 1;
|
|
|
|
- return (next() & mask) * (1.0f / (1.0f + mask));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
void Random::update() {
|
|
void Random::update() {
|
|
static const int map[2] = {0, -1900031960};
|
|
static const int map[2] = {0, -1900031960};
|
|
for(int i = 0; i < N - M; i++) {
|
|
for(int i = 0; i < N - M; i++) {
|
|
@@ -41,6 +35,16 @@ int Random::next() {
|
|
return r & static_cast<int> (-1u >> 1);
|
|
return r & static_cast<int> (-1u >> 1);
|
|
}
|
|
}
|
|
|
|
|
|
-int Random::next(int min, int max) {
|
|
|
|
- return min + next() % (max - min + 1);
|
|
|
|
|
|
+int Random::next(int min, int inclusiveMax) {
|
|
|
|
+ return min + next() % (inclusiveMax - min + 1);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+float Random::nextFloat() {
|
|
|
|
+ static constexpr int bits = sizeof (int) * 6;
|
|
|
|
+ static constexpr int mask = (1 << bits) - 1;
|
|
|
|
+ return (next() & mask) * (1.0f / (1.0f + mask));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+float Random::nextFloat(float min, float exclusiveMax) {
|
|
|
|
+ return min + nextFloat() * (exclusiveMax - min);
|
|
}
|
|
}
|