From 2f2ba42a1453f4a3a08f9c1ecfc53c1b1c83d550 Mon Sep 17 00:00:00 2001 From: "philblunsom@gmail.com" Date: Tue, 22 Jun 2010 20:34:00 +0000 Subject: Initial ci of gi dir git-svn-id: https://ws10smt.googlecode.com/svn/trunk@5 ec762483-ff6d-05da-a07a-a48fb63a330f --- gi/pyp-topics/src/mt19937ar.h | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 gi/pyp-topics/src/mt19937ar.h (limited to 'gi/pyp-topics/src/mt19937ar.h') diff --git a/gi/pyp-topics/src/mt19937ar.h b/gi/pyp-topics/src/mt19937ar.h new file mode 100644 index 00000000..caab4045 --- /dev/null +++ b/gi/pyp-topics/src/mt19937ar.h @@ -0,0 +1,44 @@ +/* mt19937ar.h + * + * Mark Johnson, 17th March 2006 + */ + +#ifndef MT19937AR_H +#define MT19937AR_H + +#ifdef __cplusplus +extern "C" { +#endif + + /* initializes mt[N] with a seed */ + void mt_init_genrand(unsigned long s); + + /* initialize by an array with array-length */ + /* init_key is the array for initializing keys */ + /* key_length is its length */ + /* slight change for C++, 2004/2/26 */ + void mt_init_by_array(unsigned long init_key[], int key_length); + + /* generates a random number on [0,0xffffffff]-interval */ + unsigned long mt_genrand_int32(void); + + /* generates a random number on [0,0x7fffffff]-interval */ + long mt_genrand_int31(void); + + /* generates a random number on [0,1]-real-interval */ + double mt_genrand_real1(void); + + /* generates a random number on [0,1)-real-interval */ + double mt_genrand_real2(void); + + /* generates a random number on (0,1)-real-interval */ + double mt_genrand_real3(void); + + /* generates a random number on [0,1) with 53-bit resolution*/ + double mt_genrand_res53(void); + +#ifdef __cplusplus +}; +#endif + +#endif /* MT19937AR_H */ -- cgit v1.2.3