Skip to content

Commit 62db764

Browse files
refine rewriting depth for lt constraints
1 parent 3fed840 commit 62db764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/rewriter/seq_rewriter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2473,7 +2473,7 @@ br_status seq_rewriter::mk_str_lt(expr* a, expr* b, expr_ref& result) {
24732473
}
24742474
if (str().is_empty(a)) {
24752475
result = m().mk_not(m().mk_eq(a, b));
2476-
return BR_DONE;
2476+
return BR_REWRITE1;
24772477
}
24782478
if (str().is_string(a, as) && str().is_string(b, bs)) {
24792479
unsigned sz = std::min(as.length(), bs.length());

0 commit comments

Comments
 (0)