mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
debug grobner and improve printing
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
69c89426da
commit
687f30a2ce
6 changed files with 67 additions and 18 deletions
|
@ -1341,8 +1341,13 @@ std::string lar_solver::get_variable_name(var_index j) const {
|
|||
if (!s.empty()) {
|
||||
return s;
|
||||
}
|
||||
|
||||
return std::string("v") + T_to_string(m_var_register.local_to_external(j));
|
||||
if (m_settings.m_print_external_var_name) {
|
||||
return std::string("v") + T_to_string(m_var_register.local_to_external(j));
|
||||
}
|
||||
else {
|
||||
std::string s = column_corresponds_to_term(j)? "t":"v";
|
||||
return s + T_to_string(j);
|
||||
}
|
||||
}
|
||||
|
||||
// ********** print region start
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue