Increasing the ULP bound.

This commit is contained in:
Daniel Lemire 2019-10-18 17:30:29 -04:00
parent 9b7832c39a
commit d0c0e31220
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ bool number_test_powers_of_two() {
double x = pjh.get_double();
int ulp = f64_ulp_dist(x,expected);
if(ulp > maxulp) maxulp = ulp;
if(ulp > 2) {
if(ulp > 3) {
printf("failed to parse %s. ULP = %d i = %d \n", buf, ulp, i);
return false;
}