3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 21:08:46 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-10-06 08:43:35 -07:00
parent 4e686693ee
commit 19e291f479

View file

@ -1453,8 +1453,13 @@ namespace qe {
lbool res = l_true;
while (res == l_true) {
res = m_solver.check();
if (res == l_true) is_sat = true;
final_check();
if (res == l_true) {
is_sat = true;
final_check();
}
else {
break;
}
}
if (res == l_undef) {
free_vars.append(num_vars, vars);