mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 13:51:23 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable
This commit is contained in:
commit
30b72809c5
1 changed files with 8 additions and 3 deletions
|
@ -1451,10 +1451,15 @@ namespace qe {
|
||||||
if (assumption) m_solver.assert_expr(assumption);
|
if (assumption) m_solver.assert_expr(assumption);
|
||||||
bool is_sat = false;
|
bool is_sat = false;
|
||||||
lbool res = l_true;
|
lbool res = l_true;
|
||||||
while (res == l_true) {
|
while (true) {
|
||||||
res = m_solver.check();
|
res = m_solver.check();
|
||||||
if (res == l_true) is_sat = true;
|
if (res == l_true) {
|
||||||
final_check();
|
is_sat = true;
|
||||||
|
final_check();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (res == l_undef) {
|
if (res == l_undef) {
|
||||||
free_vars.append(num_vars, vars);
|
free_vars.append(num_vars, vars);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue