We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c728d05 commit e287517Copy full SHA for e287517
test/git_issue_1120.cpp
@@ -43,14 +43,14 @@ int main()
43
global_iter_count = 0;
44
double x = quantile(dist, pn[i]);
45
total_iter_count += global_iter_count;
46
- CHECK_LE(global_iter_count, static_cast<std::uintmax_t>(55));
+ CHECK_LE(global_iter_count, static_cast<std::uintmax_t>(60));
47
double p = cdf(dist, x);
48
CHECK_ABSOLUTE_ERROR(p, pn[i], 45 * std::numeric_limits<double>::epsilon());
49
50
51
x = quantile(complement(dist, pn[i]));
52
53
54
p = cdf(complement(dist, x));
55
56
}
0 commit comments