3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-03 21:09:11 +00:00

bugfixes, adding plugin solver

This commit is contained in:
Nikolaj Bjorner 2024-02-21 14:11:11 -08:00
parent 659e384ee7
commit cf72a916f8
7 changed files with 146 additions and 14 deletions

View file

@ -202,6 +202,7 @@ namespace bv {
}
std::ostream& display(std::ostream& out) const {
out << "V:";
out << std::hex;
auto print_bits = [&](svector<digit_t> const& v) {
bool nz = false;
@ -215,7 +216,7 @@ namespace bv {
};
print_bits(bits);
out << " ";
out << " fix:";
print_bits(fixed);
if (!eq(lo, hi)) {