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:
parent
08c9953a36
commit
18714ce020
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue