3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-01-04 15:28:57 -08:00
parent 380c701cbe
commit e0099150ca

View file

@ -148,8 +148,8 @@ struct bit_blaster_model_converter : public model_converter {
for (expr* bit : *to_app(bs)) { for (expr* bit : *to_app(bs)) {
func_decl * bit_decl = to_app(bit)->get_decl(); func_decl * bit_decl = to_app(bit)->get_decl();
expr * bit_val = old_model->get_const_interp(bit_decl); expr * bit_val = old_model->get_const_interp(bit_decl);
CTRACE("bv", !bit_val, tout << mk_pp(bit, m()) << " " << *old_model << "\n"); if (!bit_val)
SASSERT(bit_val); bit_val = m().mk_false();
vals.push_back(bit_val); vals.push_back(bit_val);
} }
if (TO_BOOL) if (TO_BOOL)