3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-08 17:01:55 +00:00

NYI control paths

This commit is contained in:
Nikolaj Bjorner 2020-04-28 20:19:20 -07:00
parent ee1d393150
commit e67112f289
7 changed files with 22 additions and 8 deletions

View file

@ -1050,9 +1050,6 @@ bool theory_seq::add_solution(expr* l, expr* r, dependency* deps) {
}
m_new_solution = true;
m_rep.update(l, r, deps);
expr_ref sl(l, m);
m_rewrite(sl);
m_rep.update(sl, r, deps);
enode* n1 = ensure_enode(l);
enode* n2 = ensure_enode(r);
TRACE("seq", tout << mk_bounded_pp(l, m, 2) << " ==> " << mk_bounded_pp(r, m, 2) << "\n"; display_deps(tout, deps);