We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f34a23 commit 988990eCopy full SHA for 988990e
1 file changed
test/primitives/sieve.cpp
@@ -903,6 +903,10 @@ BOOST_AUTO_TEST_CASE(sieve__screen__full__exptected_saturation)
903
value = sieve_t::screen(previous = value, forward[15]);
904
BOOST_CHECK(value != previous);
905
906
+ // Already screened, not sieve change.
907
+ value = sieve_t::screen(previous = value, forward[15]);
908
+ BOOST_CHECK(value == previous);
909
+
910
// Full but not saturated.
911
BOOST_CHECK(!sieve_t::is_empty(value));
912
BOOST_CHECK(!sieve_t::is_saturated(value));
0 commit comments