mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
minor code simplification
Signed-off-by: Nuno Lopes <t-nclaud@microsoft.com>
This commit is contained in:
parent
7fc93b94f5
commit
878d57d139
|
@ -869,11 +869,7 @@ struct aig_manager::imp {
|
|||
|
||||
void mk_ite(aig * n) {
|
||||
aig_lit c, t, e;
|
||||
#ifdef Z3DEBUG
|
||||
bool ok =
|
||||
#endif
|
||||
m.is_ite(n, c, t, e);
|
||||
SASSERT(ok);
|
||||
VERIFY(m.is_ite(n, c, t, e));
|
||||
if (c.is_inverted()) {
|
||||
c.invert();
|
||||
std::swap(t, e);
|
||||
|
|
Loading…
Reference in a new issue