mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
avoid unused variable warning
This commit is contained in:
parent
f91bb12f0e
commit
223f9fffed
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue