randomMt64TableSet¶
Sets the current table used in the 64-bit Mersenne Twister generator.
Synopsis¶
randomMt64TableSet (table)
Required Arguments¶
- unsigned long long
table []
(Input) - Array of length 625 used in the 64-bit Mersenne Twister generator.
Description¶
The values in table
are the state of the 64-bit Mersenne Twister random
number generator obtained by a call to randomMt64TableGet
. The values in
the table can be used to restore the state of the generator.
Alternatively, if table
[0] > 625 then the generator is set to its
original, uninitialized, state.
Example¶
See function randomMt64TableGet.