mirror of
https://github.com/Z3Prover/z3
synced 2025-08-27 21:48:56 +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) {
|
if (j == m.m_v) {
|
||||||
monomial = true;
|
monomial = true;
|
||||||
print_monomial(m, out);
|
print_monomial(m, out);
|
||||||
out << " = " << m_lar_solver.get_column_value(j) << "\n";;
|
out << " = " << m_lar_solver.get_column_value(j);;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!monomial)
|
if (!monomial)
|
||||||
out << m_lar_solver.get_column_name(j) << " = " << m_lar_solver.get_column_value(j);
|
out << m_lar_solver.get_column_name(j) << " = " << m_lar_solver.get_column_value(j);
|
||||||
|
out <<";";
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue