mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +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());
|
||||
return;
|
||||
}
|
||||
if (e->get_family_id() == null_family_id) {
|
||||
if (e->get_family_id() != bv.get_fid()) {
|
||||
val.set(wval(e).bits());
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue