mirror of
https://github.com/Z3Prover/z3
synced 2025-08-06 19:21:22 +00:00
refine rewriting depth for lt constraints
This commit is contained in:
parent
3fed840233
commit
62db7642ec
1 changed files with 1 additions and 1 deletions
|
@ -2473,7 +2473,7 @@ br_status seq_rewriter::mk_str_lt(expr* a, expr* b, expr_ref& result) {
|
||||||
}
|
}
|
||||||
if (str().is_empty(a)) {
|
if (str().is_empty(a)) {
|
||||||
result = m().mk_not(m().mk_eq(a, b));
|
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)) {
|
if (str().is_string(a, as) && str().is_string(b, bs)) {
|
||||||
unsigned sz = std::min(as.length(), bs.length());
|
unsigned sz = std::min(as.length(), bs.length());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue