Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / rng / fishman18.c
1 /* rng/fishman18.c
2  * 
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation; either version 3 of the License, or (at
6  * your option) any later version.
7  * 
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16  */
17
18 /*
19  * This generator is taken from
20  *
21  * Donald E. Knuth
22  * The Art of Computer Programming
23  * Volume 2
24  * Third Edition
25  * Addison-Wesley
26  * Page 106-108
27  *
28  * It is called "Fishman - Moore III".
29  *
30  * This implementation copyright (C) 2001 Carlo Perassi
31  * and (C) 2003 Heiko Bauke.
32  */
33
34 #include <config.h>
35 #include <stdlib.h>
36 #include <gsl/gsl_rng.h>
37
38 #include "schrage.c"
39
40 #define AA           62089911UL
41 #define MM           0x7fffffffUL       /* 2 ^ 31 - 1 */
42 #define CEIL_SQRT_MM 46341UL    /* ceil(sqrt(2 ^ 31 - 1)) */
43
44 static inline unsigned long int ran_get (void *vstate);
45 static double ran_get_double (void *vstate);
46 static void ran_set (void *state, unsigned long int s);
47
48 typedef struct
49 {
50   unsigned long int x;
51 }
52 ran_state_t;
53
54 static inline unsigned long int
55 ran_get (void *vstate)
56 {
57   ran_state_t *state = (ran_state_t *) vstate;
58
59   state->x = schrage_mult (AA, state->x, MM, CEIL_SQRT_MM);
60
61   return state->x;
62 }
63
64 static double
65 ran_get_double (void *vstate)
66 {
67   ran_state_t *state = (ran_state_t *) vstate;
68
69   return ran_get (state) / 2147483647.0;
70 }
71
72 static void
73 ran_set (void *vstate, unsigned long int s)
74 {
75   ran_state_t *state = (ran_state_t *) vstate;
76
77   if ((s % MM) == 0)
78     s = 1;                      /* default seed is 1 */
79
80   state->x = s % MM;
81
82   return;
83 }
84
85 static const gsl_rng_type ran_type = {
86   "fishman18",                  /* name */
87   MM - 1,                       /* RAND_MAX */
88   1,                            /* RAND_MIN */
89   sizeof (ran_state_t),
90   &ran_set,
91   &ran_get,
92   &ran_get_double
93 };
94
95 const gsl_rng_type *gsl_rng_fishman18 = &ran_type;