From 48f64e04e9d94d6dea123070840e47dfde95d66c Mon Sep 17 00:00:00 2001 From: Jim Paris Date: Fri, 14 Jun 2013 20:57:59 -0400 Subject: [PATCH] Add note for mt19937 source --- pc/mt19937ar.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pc/mt19937ar.h b/pc/mt19937ar.h index e9abc32..cdc838c 100644 --- a/pc/mt19937ar.h +++ b/pc/mt19937ar.h @@ -1,3 +1,8 @@ +/* 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);