Skip to content

Commit

Permalink
refine rewriting depth for lt constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 15, 2024
1 parent 3fed840 commit 62db764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/rewriter/seq_rewriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2473,7 +2473,7 @@ br_status seq_rewriter::mk_str_lt(expr* a, expr* b, expr_ref& result) {
}
if (str().is_empty(a)) {
result = m().mk_not(m().mk_eq(a, b));
return BR_DONE;
return BR_REWRITE1;
}
if (str().is_string(a, as) && str().is_string(b, bs)) {
unsigned sz = std::min(as.length(), bs.length());
Expand Down

0 comments on commit 62db764

Please sign in to comment.