mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix #6477
This commit is contained in:
parent
ead2a46a88
commit
87095950cb
|
@ -1988,6 +1988,10 @@ bool bv_rewriter::distribute_concat(decl_kind k, unsigned n, expr* const* args,
|
|||
expr* e = to_app(arg)->get_arg(0);
|
||||
unsigned sz1 = get_bv_size(e);
|
||||
unsigned sz2 = get_bv_size(arg);
|
||||
if (sz1 == sz2) {
|
||||
result = m.mk_app(get_fid(), k, n, args);
|
||||
return true;
|
||||
}
|
||||
expr_ref_vector args1(m), args2(m);
|
||||
for (unsigned j = 0; j < n; ++j) {
|
||||
args1.push_back(m_mk_extract(sz2 - 1, sz2 - sz1, args[j]));
|
||||
|
|
Loading…
Reference in a new issue