From 998d2dedb4b66ba7a6d4ecc1ef088ae31135d896 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Mon, 28 Sep 2015 10:38:04 +0200 Subject: [PATCH] factor: reduce number of random tests --- test/factor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/factor.rs b/test/factor.rs index 878ed95de..6eadf3469 100644 --- a/test/factor.rs +++ b/test/factor.rs @@ -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]