3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-16 16:27:11 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-06-06 15:14:38 -07:00
parent c388d99c35
commit ed49c1eae3
4 changed files with 14 additions and 7 deletions

View file

@ -8,7 +8,7 @@ Module Name:
Abstract:
E-matching quantifier instantiation plugin
Author:
Nikolaj Bjorner (nbjorner) 2021-01-24
@ -374,6 +374,7 @@ namespace q {
clause* cl = alloc(clause, m, m_clauses.size());
cl->m_literal = ctx.mk_literal(_q);
quantifier_ref q(_q, m);
q = m_qs.flatten(q);
if (is_exists(q)) {
cl->m_literal.neg();
expr_ref body(mk_not(m, q->get_expr()), m);