mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +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;
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue