Changed size of prime arrary to 10000

This commit is contained in:
Jens Axel Søgaard 2012-11-08 18:34:29 +01:00 committed by Neil Toronto
parent 2178282fd6
commit 9307cbb120

View File

@ -52,7 +52,7 @@
(define prime-strong-pseudo-trials
(integer-length (assert (/ 1 prime-strong-pseudo-certainty) integer?)))
(define *SMALL-PRIME-LIMIT* 1000000)
(define *SMALL-PRIME-LIMIT* 10000)
; (define *SMALL-PRIME-LIMIT* 1000) ; use 1000 for coverage testing
; Determines the size of the pre-built table of small primes
(define *SMALL-FACORIZATION-LIMIT* *SMALL-PRIME-LIMIT*)