3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-30 16:03:16 +00:00

replace v by j in lp printouts

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-03-30 15:59:03 -07:00
parent a6e7ed039c
commit 3e845010dd
8 changed files with 14 additions and 14 deletions

View file

@ -208,7 +208,7 @@ typedef nla::variable_map_type variable_map_type;
if (!m_lp2nl.find(v, r)) {
r = m_nlsat->mk_var(is_int(v));
m_lp2nl.insert(v, r);
TRACE("arith", tout << "v" << v << " := x" << r << "\n";);
TRACE("arith", tout << "j" << v << " := x" << r << "\n";);
}
return r;
}
@ -227,9 +227,9 @@ typedef nla::variable_map_type variable_map_type;
std::ostream& display(std::ostream& out) const {
for (auto m : m_monics) {
out << "v" << m.var() << " = ";
out << "j" << m.var() << " = ";
for (auto v : m.vars()) {
out << "v" << v << " ";
out << "j" << v << " ";
}
out << "\n";
}