1 /* Mersenne Twister pseudo-random number generator functions.
3 Copyright 2002, 2003 Free Software Foundation, Inc.
5 This file is part of the GNU MP Library.
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
25 /* Calculate (b^e) mod (2^n-k) for e=1074888996, n=19937 and k=20023,
26 needed by the seeding function below. */
28 mangle_seed (mpz_ptr r
, mpz_srcptr b_orig
)
31 unsigned long e
= 0x40118124;
32 unsigned long bit
= 0x20000000;
35 mpz_init_set (b
, b_orig
); /* in case r==b_orig */
45 mpz_tdiv_q_2exp (t
, r
, 19937L);
48 mpz_tdiv_r_2exp (r
, r
, 19937L);
49 mpz_addmul_ui (r
, t
, 20023L);
68 /* Seeding function. Uses powering modulo a non-Mersenne prime to obtain
69 a permutation of the input seed space. The modulus is 2^19937-20023,
70 which is probably prime. The power is 1074888996. In order to avoid
71 seeds 0 and 1 generating invalid or strange output, the input seed is
72 first manipulated as follows:
74 seed1 = seed mod (2^19937-20027) + 2
76 so that seed1 lies between 2 and 2^19937-20026 inclusive. Then the
77 powering is performed as follows:
79 seed2 = (seed1^1074888996) mod (2^19937-20023)
81 and then seed2 is used to bootstrap the buffer.
83 This method aims to give guarantees that:
84 a) seed2 will never be zero,
85 b) seed2 will very seldom have a very low population of ones in its
86 binary representation, and
87 c) every seed between 0 and 2^19937-20028 (inclusive) will yield a
92 The period of the seeding function is 2^19937-20027. This means that
93 with seeds 2^19937-20027, 2^19937-20026, ... the exact same sequences
94 are obtained as with seeds 0, 1, etc.; it also means that seed -1
95 produces the same sequence as seed 2^19937-20028, etc.
99 randseed_mt (gmp_randstate_t rstate
, mpz_srcptr seed
)
104 gmp_rand_mt_struct
*p
;
105 mpz_t mod
; /* Modulus. */
106 mpz_t seed1
; /* Intermediate result. */
108 p
= (gmp_rand_mt_struct
*) RNG_STATE (rstate
);
113 mpz_set_ui (mod
, 0L);
114 mpz_setbit (mod
, 19937L);
115 mpz_sub_ui (mod
, mod
, 20027L);
116 mpz_mod (seed1
, seed
, mod
); /* Reduce `seed' modulo `mod'. */
117 mpz_add_ui (seed1
, seed1
, 2L); /* seed1 is now ready. */
118 mangle_seed (seed1
, seed1
); /* Perform the mangling by powering. */
120 /* Copy the last bit into bit 31 of mt[0] and clear it. */
121 p
->mt
[0] = (mpz_tstbit (seed1
, 19936L) != 0) ? 0x80000000 : 0;
122 mpz_clrbit (seed1
, 19936L);
124 /* Split seed1 into N-1 32-bit chunks. */
125 mpz_export (&p
->mt
[1], &cnt
, -1, sizeof (p
->mt
[1]), 0,
126 8 * sizeof (p
->mt
[1]) - 32, seed1
);
135 /* Warm the generator up if necessary. */
137 for (i
= 0; i
< WARM_UP
/ N
; i
++)
138 __gmp_mt_recalc_buffer (p
->mt
);
140 p
->mti
= WARM_UP
% N
;
144 static const gmp_randfnptr_t Mersenne_Twister_Generator
= {
151 /* Initialize MT-specific data. */
153 gmp_randinit_mt (gmp_randstate_t rstate
)
155 __gmp_randinit_mt_noseed (rstate
);
156 RNG_FNPTR (rstate
) = (void *) &Mersenne_Twister_Generator
;