blob: 3fdc2d45af03ee2339ad59afff3cb3164ed9a06e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "random_generator.hpp"
RandomNumberGenerator::RandomNumberGenerator(const unsigned int &seed)
{
this->_generator = std::make_unique<std::mt19937>(seed);
}
RandomNumberGenerator::RandomNumberGenerator()
{
std::random_device random_device;
this->_generator = std::make_unique<std::mt19937>(random_device());
}
unsigned int RandomNumberGenerator::in_range(const unsigned int &a,
const unsigned int &b) const
{
auto random_distribution = std::uniform_int_distribution<unsigned int>(a, b);
return random_distribution(*this->_generator);
}
|