std::mersenne_twister_engine
Min standard notice:
Header: <random>
mersenne_twister_engine is a random number engine based on Mersenne Twister algorithm. It produces high quality, but not cryptographically secure, unsigned integer random numbers of type UIntType on the interval (\scriptsize {[0,2^w)})[0, 2w).
# Declarations
template<
class UIntType, std::size_t w, std::size_t n, std::size_t m, std::size_t r,
UIntType a, std::size_t u, UIntType d, std::size_t s,
UIntType b, std::size_t t, UIntType c, std::size_t l, UIntType f
> class mersenne_twister_engine;
(since C++11)
# Example
This section is incompleteReason: no example