summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'rand.c')
-rw-r--r--rand.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/rand.c b/rand.c
index e8d52965..0b811b9f 100644
--- a/rand.c
+++ b/rand.c
@@ -49,6 +49,10 @@ typedef unsigned int rand32_t;
typedef unsigned long rand32_t;
#endif
+/*
+ * The algorithm here is WELL 512.
+ * (Francois Panneton, Pierre L'Ecuyer.)
+ */
struct random_state {
rand32_t state[16];
int cur;