factor: reduce number of random tests

This commit is contained in:
Michael Gehring
2015-09-28 10:38:04 +02:00
parent e82244d604
commit 998d2dedb4
+1 -1
View File
@@ -22,7 +22,7 @@ mod sieve;
const NUM_PRIMES: usize = 10000;
const LOG_PRIMES: f64 = 14.0; // ceil(log2(NUM_PRIMES))
const NUM_TESTS: usize = 1000;
const NUM_TESTS: usize = 100;
const PROGNAME: &'static str = "./factor";
#[test]