3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

remove copy

This commit is contained in:
Nuno Lopes 2020-07-14 12:26:49 +01:00
parent d1a0e83423
commit aeac0b46a0

View file

@ -224,10 +224,8 @@ bool theory_seq::reduce_ne(unsigned idx) {
TRACE("seq", display_disequation(tout << "updated: " << updated << "\n", n););
if (updated) {
auto new_n(ne(n.l(), n.r(), new_eqs, new_lits, new_deps));
m_nqs.set(idx, new_n);
m_nqs.set(idx, ne(n.l(), n.r(), new_eqs, new_lits, new_deps));
TRACE("seq", display_disequation(tout << "updated:\n", m_nqs[idx]););
TRACE("seq", display_disequation(tout << "updated:\n", new_n););
}
return false;
}