mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 20:21:23 +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));
|
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); });
|
bool const is_false = all_of(cl, [&](auto lit) { return m_bvars.is_false(lit); });
|
||||||
SASSERT(!is_false);
|
VERIFY(!is_false);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue