3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 00:26:38 +00:00

avoid unused variable warning

This commit is contained in:
Jakob Rath 2023-01-25 12:32:04 +01:00
parent f91bb12f0e
commit 223f9fffed

View file

@ -1475,9 +1475,9 @@ namespace polysat {
LOG(" " << lit_pp(*this, lit));
}
}
SASSERT(undefs != 1);
VERIFY(undefs != 1);
bool const is_false = all_of(cl, [&](auto lit) { return m_bvars.is_false(lit); });
SASSERT(!is_false);
VERIFY(!is_false);
}
return true;
}