Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / rng / fishman20.c
1 /* rng/fishman20.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 108
27  *
28  * It is called "Fishman"
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 static inline unsigned long int ran_get (void *vstate);
39 static double ran_get_double (void *vstate);
40 static void ran_set (void *state, unsigned long int s);
41
42 static const long int m = 2147483647, a = 48271, q = 44488, r = 3399;
43
44 typedef struct
45 {
46   unsigned long int x;
47 }
48 ran_state_t;
49
50 static inline unsigned long int
51 ran_get (void *vstate)
52 {
53   ran_state_t *state = (ran_state_t *) vstate;
54
55   const unsigned long int x = state->x;
56
57   const long int h = x / q;
58   const long int t = a * (x - h * q) - h * r;
59
60   if (t < 0)
61     {
62       state->x = t + m;
63     }
64   else
65     {
66       state->x = t;
67     }
68
69   return state->x;
70 }
71
72 static double
73 ran_get_double (void *vstate)
74 {
75   ran_state_t *state = (ran_state_t *) vstate;
76
77   return ran_get (state) / 2147483647.0;
78 }
79
80 static void
81 ran_set (void *vstate, unsigned long int s)
82 {
83   ran_state_t *state = (ran_state_t *) vstate;
84
85   if ((s%m) == 0)
86     s = 1;                      /* default seed is 1 */
87
88   state->x = s & m;
89
90   return;
91 }
92
93 static const gsl_rng_type ran_type = {
94   "fishman20",                  /* name */
95   2147483646,                   /* RAND_MAX */
96   1,                            /* RAND_MIN */
97   sizeof (ran_state_t),
98   &ran_set,
99   &ran_get,
100   &ran_get_double
101 };
102
103 const gsl_rng_type *gsl_rng_fishman20 = &ran_type;