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:
commit
30b72809c5
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue