3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-03 15:31:44 -07:00
parent 3bd340af44
commit 0b856638e9

View file

@ -754,10 +754,12 @@ namespace sat {
}
add_unit(~lit, null_literal);
if (!propagate(~lit)) {
IF_VERBOSE(0, verbose_stream() << "unsat\n");
IF_VERBOSE(2, verbose_stream() << "unsat\n");
m_is_unsat = true;
return;
}
if (m_unsat_stack.empty())
return;
goto reflip;
}