Skip to content

Commit e287517

Browse files
committed
Update max iterations.
1 parent c728d05 commit e287517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/git_issue_1120.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ int main()
4343
global_iter_count = 0;
4444
double x = quantile(dist, pn[i]);
4545
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));
4747
double p = cdf(dist, x);
4848
CHECK_ABSOLUTE_ERROR(p, pn[i], 45 * std::numeric_limits<double>::epsilon());
4949

5050
global_iter_count = 0;
5151
x = quantile(complement(dist, pn[i]));
5252
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));
5454
p = cdf(complement(dist, x));
5555
CHECK_ABSOLUTE_ERROR(p, pn[i], 45 * std::numeric_limits<double>::epsilon());
5656
}

0 commit comments

Comments
 (0)