3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 13:53:39 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-06-04 15:52:38 -07:00
parent 37d2ed646d
commit bce903ae97
2 changed files with 9 additions and 4 deletions

View file

@ -276,7 +276,7 @@ struct pull_quant::imp {
if (is_exists(old_q)) {
result = m.mk_not(new_body);
result = m.mk_not(m.update_quantifier(old_q, exists_k, result));
result = m.mk_not(m.update_quantifier(old_q, forall_k, result));
if (m.proofs_enabled())
m.mk_rewrite(old_q, result);
return true;