mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +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
|
@ -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…
Reference in a new issue