3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

unreferenced variables

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-10 09:41:12 +01:00
parent c151ae98f8
commit 618d394ab5
2 changed files with 1 additions and 2 deletions

View file

@ -2504,7 +2504,7 @@ namespace smt {
bool theory_pb::validate_unit_propagation(card const& c) {
context& ctx = get_context();
for (unsigned i = c.k(); i < c.size(); ++i) {
SASSERT(ctx.get_assignment(c.lit(i)) == l_false);
VERIFY(ctx.get_assignment(c.lit(i)) == l_false);
}
return true;
}