diff options
Diffstat (limited to 'rand.c')
-rw-r--r-- | rand.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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; |