mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 08:23:17 +00:00
replace v by j in lp printouts
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
a6e7ed039c
commit
3e845010dd
8 changed files with 14 additions and 14 deletions
|
@ -30,7 +30,7 @@ template <typename T, typename X> column_info<T> * lp_solver<T, X>::get_or_creat
|
|||
template <typename T, typename X>
|
||||
std::string lp_solver<T, X>::get_variable_name(unsigned j) const { // j here is the core solver index
|
||||
if (!m_settings.m_print_external_var_name)
|
||||
return std::string("v")+T_to_string(j);
|
||||
return std::string("j")+T_to_string(j);
|
||||
auto it = this->m_core_solver_columns_to_external_columns.find(j);
|
||||
if (it == this->m_core_solver_columns_to_external_columns.end())
|
||||
return std::string("x")+T_to_string(j);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue