3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable

This commit is contained in:
Christoph M. Wintersteiger 2014-10-06 18:07:07 +01:00
commit 30b72809c5

View file

@ -1451,10 +1451,15 @@ namespace qe {
if (assumption) m_solver.assert_expr(assumption);
bool is_sat = false;
lbool res = l_true;
while (res == l_true) {
while (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);