3
0
Fork 0
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:
Nikolaj Bjorner 2018-01-17 18:11:14 -08:00
parent b5335bc34b
commit 57406d6cc4
3 changed files with 16 additions and 8 deletions

View file

@ -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;