Skip to content

Commit

Permalink
fix? bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaanNyaan committed Sep 2, 2023
1 parent 7ccfc70 commit 4a728bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify/verify-aoj-other/aoj-2171-bigrational.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void test() {
double a1 = calc<double>(N, S, T, q, A);
double a2 = calc<BigRational>(N, S, T, q, A);
double error = abs(a1 - a2) / max(1.0, a2);
assert(error < 1e-8);
assert(error < 1e-6);
}
}

Expand Down

0 comments on commit 4a728bf

Please sign in to comment.