Skip to content

Commit

Permalink
revert breaking change
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Aug 3, 2020
1 parent 7eb05dd commit 7ae7068
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/smt/seq_ne_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ bool theory_seq::branch_nqs() {
lbool theory_seq::branch_nq(ne const& n) {
expr_ref len_l(mk_len(n.l()), m);
expr_ref len_r(mk_len(n.r()), m);
#if 0
// TBD: breaks
if (!has_length(n.l())) {
enque_axiom(len_l);
add_length(n.l(), len_l);
Expand All @@ -268,7 +270,7 @@ lbool theory_seq::branch_nq(ne const& n) {
add_length(n.r(), len_r);
return l_undef;
}
#endif
literal eq_len = mk_eq(len_l, len_r, false);
ctx.mark_as_relevant(eq_len);
switch (ctx.get_assignment(eq_len)) {
Expand Down

0 comments on commit 7ae7068

Please sign in to comment.