aboutsummaryrefslogtreecommitdiff
path: root/src/randomization/generator.cpp
blob: b9bcb8aff3dbfa009dc5c395ef9025ffb1fb1fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "generator.hpp"

RandomNumberGenerator::RandomNumberGenerator(const unsigned int &seed)
{
	this->_generator = std::make_unique<std::mt19937>(seed);
}

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);
}