diff --git a/collects/srfi/27/random-bits.ss b/collects/srfi/27/random-bits.ss index d7e5e1aeab..a627646386 100644 --- a/collects/srfi/27/random-bits.ss +++ b/collects/srfi/27/random-bits.ss @@ -132,10 +132,17 @@ (-> random-source? any) (-> random-source? (and/c (>/c 0) (pseudo-random-generator! new mrg32k3a-initial-state) new)) (define default-random-source (make-random-source)) @@ -243,14 +250,6 @@ (define mrg32k3a-m1 4294967087) ; modulus of component 1 (define mrg32k3a-m2 4294944443) ; modulus of component 2 -(define mrg32k3a-initial-state ; 0 3 6 9 12 15 of A^16, see below - '#( 1062452522 - 2961816100 - 342112271 - 2854655037 - 3321940838 - 3542344109)) - (define mrg32k3a-generators #f) ; computed when needed (define (mrg32k3a-pseudo-randomize-state i j)