64 explicit Mersenne(
unsigned long seed);
65 unsigned long get_uint31();
68 max_value = 0x7fffffff
73 static const unsigned long N = 624;
74 static const unsigned long M = 397;
75 static const unsigned long MATRIX_A = 0x9908b0dfUL;
76 static const unsigned long UPPER_MASK = 0x80000000UL;
77 static const unsigned long LOWER_MASK = 0x7fffffffUL;
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.