diff --git a/scripts/primes.rhai b/scripts/primes.rhai index a389999f..22defcb4 100644 --- a/scripts/primes.rhai +++ b/scripts/primes.rhai @@ -2,7 +2,7 @@ let now = timestamp(); -const MAX_NUMBER_TO_CHECK = 10_000; // 1229 primes <= 10000 +const MAX_NUMBER_TO_CHECK = 100_000; // 9592 primes <= 100000 let prime_mask = []; prime_mask.pad(MAX_NUMBER_TO_CHECK, true);