File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ int main()
45
45
total_iter_count += global_iter_count;
46
46
CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(55 ));
47
47
double p = cdf (dist, x);
48
- CHECK_ABSOLUTE_ERROR (p, pn[i], 15 * std::numeric_limits<double >::epsilon ());
48
+ CHECK_ABSOLUTE_ERROR (p, pn[i], 45 * std::numeric_limits<double >::epsilon ());
49
49
50
50
global_iter_count = 0 ;
51
51
x = quantile (complement (dist, pn[i]));
52
52
total_iter_count += global_iter_count;
53
53
CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(55 ));
54
54
p = cdf (complement (dist, x));
55
- CHECK_ABSOLUTE_ERROR (p, pn[i], 15 * std::numeric_limits<double >::epsilon ());
55
+ CHECK_ABSOLUTE_ERROR (p, pn[i], 45 * std::numeric_limits<double >::epsilon ());
56
56
}
57
57
}
58
58
CHECK_LE (total_iter_count, static_cast <std::uintmax_t >(10000 ));
You can’t perform that action at this time.
0 commit comments