mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
Code simplification
This commit is contained in:
parent
ba70ab9ad2
commit
14d2356a32
1 changed files with 1 additions and 1 deletions
|
@ -739,7 +739,7 @@ namespace smt {
|
||||||
converted = m.mk_and(convert(e), mk_side_conditions());
|
converted = m.mk_and(convert(e), mk_side_conditions());
|
||||||
|
|
||||||
expr_ref cnstr(m);
|
expr_ref cnstr(m);
|
||||||
cnstr = (is_true) ? m.mk_implies(e, converted) : m.mk_implies(m.mk_not(e), m.mk_not(converted));
|
cnstr = (is_true) ? m.mk_implies(e, converted) : m.mk_implies(converted, e);
|
||||||
m_th_rw(cnstr);
|
m_th_rw(cnstr);
|
||||||
assert_cnstr(cnstr);
|
assert_cnstr(cnstr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue