From 359eba34ffea4e640bae8b55012b7dd320457aa3 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sun, 31 Aug 2008 13:07:06 +0000 Subject: [PATCH] Try to read 627 random words from /dev/urandom when initializing the random number state. This should give better random numbers since we initialize the state with 627 "truly" random values. Previously, only one word was used, which meant that the state vector really only had 32 bits of randomness. --- code/rand-mt19937.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/rand-mt19937.lisp b/code/rand-mt19937.lisp index fc9b30223..bb1569b15 100644 --- a/code/rand-mt19937.lisp +++ b/code/rand-mt19937.lisp @@ -6,7 +6,7 @@ ;;; placed in the Public domain, and is provided 'as is'. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/rand-mt19937.lisp,v 1.17 2008/06/26 21:00:24 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/rand-mt19937.lisp,v 1.18 2008/08/31 13:07:06 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -208,7 +208,7 @@ (cond ((not state) (copy-random-state *random-state*)) ((random-state-p state) (copy-random-state state)) ((eq state t) - (make-random-object :state (init-random-state (generate-seed)))) + (make-random-object :state (init-random-state (generate-seed 627)))) (t (error "Argument is not a RANDOM-STATE, T or NIL: ~S" state))))) (defun rand-mt19937-initializer () -- GitLab