3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

improve printing

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2018-08-29 19:12:57 +08:00
parent 08c9953a36
commit 18714ce020

View file

@ -532,12 +532,13 @@ struct solver::imp {
if (j == m.m_v) {
monomial = true;
print_monomial(m, out);
out << " = " << m_lar_solver.get_column_value(j) << "\n";;
out << " = " << m_lar_solver.get_column_value(j);;
break;
}
}
if (!monomial)
out << m_lar_solver.get_column_name(j) << " = " << m_lar_solver.get_column_value(j);
out <<";";
return out;
}