mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
more updates for #1439
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b5335bc34b
commit
57406d6cc4
3 changed files with 16 additions and 8 deletions
|
@ -74,9 +74,7 @@ namespace sat {
|
|||
DEBUG_CODE({
|
||||
// all clauses must be satisfied
|
||||
bool sat = false;
|
||||
it2 = it->m_clauses.begin();
|
||||
for (; it2 != end2; ++it2) {
|
||||
literal l = *it2;
|
||||
for (literal l : m_clauses) {
|
||||
if (l == null_literal) {
|
||||
SASSERT(sat);
|
||||
sat = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue