mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
disable adding redundant ite clauses as lemma. Add as non-redundant
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
cbe52e298b
commit
333b32b0d2
|
@ -337,8 +337,8 @@ struct goal2sat::imp {
|
|||
mk_clause(l, ~c, ~t);
|
||||
mk_clause(l, c, ~e);
|
||||
if (m_ite_extra) {
|
||||
mk_clause(~t, ~e, l, true);
|
||||
mk_clause(t, e, ~l, true);
|
||||
mk_clause(~t, ~e, l, false);
|
||||
mk_clause(t, e, ~l, false);
|
||||
}
|
||||
m_result_stack.shrink(sz-3);
|
||||
if (sign)
|
||||
|
|
Loading…
Reference in a new issue