X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Frandom.lisp;h=cfcc7fc9594492c10c4bdab34d446c56c37857e4;hb=333049ee307ddeb69d4b7eee3c2a381da494da31;hp=4126036e83399b60f7284a11d306b457540a3652;hpb=8731c1a7c1a585d190151fa881050fb5e14c0616;p=sbcl.git diff --git a/src/code/random.lisp b/src/code/random.lisp index 4126036..cfcc7fc 100644 --- a/src/code/random.lisp +++ b/src/code/random.lisp @@ -10,20 +10,8 @@ (in-package "SB!KERNEL") ;;; the size of the chunks returned by RANDOM-CHUNK -(def!constant random-chunk-length 32) - -;;; the amount that we overlap chunks by when building a large integer -;;; to make up for the loss of randomness in the low bits -(def!constant random-integer-overlap 3) - -;;; extra bits of randomness that we generate before taking the value MOD the -;;; limit, to avoid loss of randomness near the limit -(def!constant random-integer-extra-bits 10) - -;;; the largest fixnum we can compute from one chunk of bits -(def!constant random-fixnum-max - (1- (ash 1 (- random-chunk-length random-integer-extra-bits)))) +(def!constant n-random-chunk-bits 32) (sb!xc:defstruct (random-state (:constructor %make-random-state) - (:copier nil)) ; since shallow copy is wrong + (:copier nil)) ; since shallow copy is wrong (state (init-random-state) :type (simple-array (unsigned-byte 32) (627))))