3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +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

@ -1267,10 +1267,10 @@ std::string lar_solver::get_variable_name(var_index j) const {
return s;
}
if (m_settings.m_print_external_var_name) {
return std::string("v") + T_to_string(m_var_register.local_to_external(j));
return std::string("j") + T_to_string(m_var_register.local_to_external(j));
}
else {
std::string s = column_corresponds_to_term(j)? "t":"v";
std::string s = column_corresponds_to_term(j)? "t":"j";
return s + T_to_string(j);
}
}