3
0
Fork 0
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:
Nikolaj Bjorner 2025-01-27 08:22:33 -08:00
parent 09e84e0448
commit 7ffed8613a

View file

@ -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;
}