modified: nfig1.py
[GalaxyCodeBases.git] / BGI / BASE / src / 2bwt / r250.h
blob75f572fb787c60fd9c2260fd17e384d581e4384a
1 /* r250.h prototypes for r250 random number generator,
3 Kirkpatrick, S., and E. Stoll, 1981; "A Very Fast
4 Shift-Register Sequence Random Number Generator",
5 Journal of Computational Physics, V.40
7 also:
9 see W.L. Maier, DDJ May 1991
14 #ifndef _R250_H_
15 #define _R250_H_ 1.2
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
22 void r250_init(int seed);
23 unsigned int r250( void );
24 double dr250( void );
27 #ifdef __cplusplus
29 #endif
31 #endif