public static member function
<random>
std::mersenne_twister_engine::maxstatic constexpr result_type max();
Maximum value
Returns the maximum value potentially returned by member operator(), which for mersenne_twister_engine is 2w-1 (where w is the word size specified as the second class template parameter).1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// mersenne_twister_engine::min and max
#include <iostream>
#include <chrono>
#include <random>
int main ()
{
unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
std::mt19937 generator (seed); // mt19937 is a standard mersenne_twister_engine
std::cout << generator() << " is a random number between ";
std::cout << generator.min() << " and " << generator.max();
return 0;
}
2137850808 is a random number between 0 and 4294967295
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4