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 @@ -43,14 +43,14 @@ int main()
43
43
global_iter_count = 0 ;
44
44
double x = quantile (dist, pn[i]);
45
45
total_iter_count += global_iter_count;
46
- CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(55 ));
46
+ CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(60 ));
47
47
double p = cdf (dist, x);
48
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
- CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(55 ));
53
+ CHECK_LE (global_iter_count, static_cast <std::uintmax_t >(60 ));
54
54
p = cdf (complement (dist, x));
55
55
CHECK_ABSOLUTE_ERROR (p, pn[i], 45 * std::numeric_limits<double >::epsilon ());
56
56
}
You can’t perform that action at this time.
0 commit comments