mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
fix bug with handling theory symbols of bit-vector type. Happens for data-type accessors. Reported by Clemens Eisenhofer
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
09e84e0448
commit
7ffed8613a
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ namespace sls {
|
||||||
val.set(val_el.bits());
|
val.set(val_el.bits());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (e->get_family_id() == null_family_id) {
|
if (e->get_family_id() != bv.get_fid()) {
|
||||||
val.set(wval(e).bits());
|
val.set(wval(e).bits());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue