You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* This header file provides prototypes for the Mersenne Twister
- random number generator. The corresponding mt19937.c is also
- required and can be obtained from:
- http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html
- */
- void init_genrand(unsigned long s);
- void init_by_array(unsigned long init_key[], int key_length);
- unsigned long genrand_int32(void);
- long genrand_int31(void);
- double genrand_real1(void);
- double genrand_real2(void);
- double genrand_real3(void);
- double genrand_res53(void);
|