3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

pretty print

This commit is contained in:
Nikolaj Bjorner 2020-05-15 08:54:50 -07:00
parent c4204d3365
commit 146fd77e0f

View file

@ -174,7 +174,7 @@ std::ostream& core::print_product(const T & m, std::ostream& out) const {
if (lp_settings().m_print_external_var_name)
out << "(" << m_lar_solver.get_variable_name(v) << "=" << val(v) << ")";
else
out << "(j" << v << " =" << val(v) << ")";
out << "(j" << v << " = " << val(v) << ")";
}
return out;