3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 08:28:44 +00:00

assertion fixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-09-29 19:53:22 -07:00
parent d6327d69d2
commit 133f376172
3 changed files with 15 additions and 6 deletions

View file

@ -1910,7 +1910,7 @@ namespace sat {
while (true) {
lbool result = cube(lits);
if (lits.empty() || result != l_undef) {
return result;
return l_undef;
}
display_cube(std::cout, lits);
}