mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
This commit is contained in:
parent
d73ceaddc7
commit
9038dfd30d
|
@ -61,8 +61,11 @@ namespace q {
|
|||
return;
|
||||
}
|
||||
|
||||
if (l.sign() == is_forall(e))
|
||||
add_clause(~l, skolemize(q));
|
||||
if (l.sign() == is_forall(e)) {
|
||||
sat::literal lit = skolemize(q);
|
||||
add_clause(~l, lit);
|
||||
ctx.add_root(~l, lit);
|
||||
}
|
||||
else {
|
||||
ctx.push_vec(m_universal, l);
|
||||
if (ctx.get_config().m_ematching)
|
||||
|
|
Loading…
Reference in a new issue