3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-01 15:50:40 +00:00

maintain ownership of dependency

This commit is contained in:
Nikolaj Bjorner 2024-04-10 17:57:14 -07:00
parent 7b8980f82d
commit 974ea7b68d
4 changed files with 15 additions and 7 deletions

View file

@ -1996,11 +1996,7 @@ namespace bv {
out << e->get_id() << ": " << mk_bounded_pp(e, m, 1) << " ";
if (is_fixed0(e))
out << "f ";
if (bv.is_bv(e))
out << wval(e);
else if (m.is_bool(e))
out << (bval0(e) ? "T" : "F");
out << "\n";
display_value(out, e) << "\n";
}
terms.reset();
return out;