mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
qe fix
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4e686693ee
commit
19e291f479
|
@ -1453,8 +1453,13 @@ namespace qe {
|
||||||
lbool res = l_true;
|
lbool res = l_true;
|
||||||
while (res == l_true) {
|
while (res == l_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…
Reference in a new issue