//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // typedef mersenne_twister_engine mt19937; #include #include int main() { std::mt19937 e; e.discard(9999); assert(e() == 4123659995u); }