mirror of
https://github.com/Z3Prover/z3
synced 2025-10-19 05:42:15 +00:00
parameter eval order
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
8ccf4cd8f7
commit
6a9520bdc2
1 changed files with 2 additions and 1 deletions
|
@ -1910,7 +1910,8 @@ br_status seq_rewriter::mk_seq_mapi(expr* f, expr* i, expr* seqA, expr_ref& resu
|
|||
}
|
||||
if (str().is_concat(seqA, s1, s2)) {
|
||||
expr_ref j(m_autil.mk_add(i, str().mk_length(s1)), m());
|
||||
result = str().mk_concat(str().mk_mapi(f, i, s1), str().mk_mapi(f, j, s2));
|
||||
auto a = str().mk_mapi(f, i, s1);
|
||||
result = str().mk_concat(a, str().mk_mapi(f, j, s2));
|
||||
return BR_REWRITE2;
|
||||
}
|
||||
return BR_FAILED;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue