Skip to content

Commit c728d05

Browse files
committed
Up clang error rates again.
1 parent 4f6963a commit c728d05

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
@@ -45,14 +45,14 @@ int main()
4545
total_iter_count += global_iter_count;
4646
CHECK_LE(global_iter_count, static_cast<std::uintmax_t>(55));
4747
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());
4949

5050
global_iter_count = 0;
5151
x = quantile(complement(dist, pn[i]));
5252
total_iter_count += global_iter_count;
5353
CHECK_LE(global_iter_count, static_cast<std::uintmax_t>(55));
5454
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());
5656
}
5757
}
5858
CHECK_LE(total_iter_count, static_cast<std::uintmax_t>(10000));

0 commit comments

Comments
 (0)