Skip to content

Commit

Permalink
Review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aroffringa committed Feb 15, 2024
1 parent 0d9991d commit fa118cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testdithering.cc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ BOOST_AUTO_TEST_CASE(avg_deviation) {
BOOST_CHECK_LE(ditheredError, 1e-9);
} else {
BOOST_CHECK_LT(ditheredError, unditheredError);
BOOST_CHECK(ditheredError <= previousError[j] || ditheredError < 1e5);
BOOST_CHECK_LE(ditheredError, previousError[j]*10.0);
}
previousError[j] = ditheredError;
}
Expand Down

0 comments on commit fa118cf

Please sign in to comment.