3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 09:55:19 +00:00

fix printing

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-03-09 20:31:43 -10:00
parent 579eb4d472
commit 019737dcbd

View file

@ -249,8 +249,8 @@ namespace lp {
std::ostream& print_S(std::ostream& out) {
out << "S:\n";
for (const auto& p : m_k2s.m_map) {
print_entry(p.second, out, false, false, true);
for (unsigned ei = 0 ; ei < m_e_matrix.row_count(); ei++) {
print_entry(ei, out, false, false, true);
}
return out;
}
@ -2539,7 +2539,7 @@ namespace lp {
if (!has_fresh) {
for (const auto& p : get_term_from_entry(i)) {
out << "\tlocal(x" << p.var() << ")";
lra.print_column_info(local_to_lar_solver(p.var()), out) << "\n";
lra.print_column_info(local_to_lar_solver(p.var()), out);
}
}
}