From 283a40c901101e66de7061bd359252c013dcc43c Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Wed, 19 Aug 2020 01:55:28 +0200 Subject: [PATCH] Use 30 max digits by default This makes calculations much faster, and we may be more likely to find edge cases around the 64 bit limit. --- random-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/random-tests.php b/random-tests.php index fcab47f..c59529f 100644 --- a/random-tests.php +++ b/random-tests.php @@ -11,7 +11,7 @@ use Brick\Math\Internal\Calculator; -(new class(100) { +(new class(30) { // max digits private $gmp; private $bcmath; private $native;