mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
better tracing
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
0dbfcad560
commit
4963108277
1 changed files with 3 additions and 2 deletions
|
@ -287,7 +287,7 @@ struct solver::imp {
|
|||
template <typename T>
|
||||
std::ostream& print_product(const T & m, std::ostream& out) const {
|
||||
for (unsigned k = 0; k < m.size(); k++) {
|
||||
out << m_lar_solver.get_variable_name(m[k]);
|
||||
out << "(" << m_lar_solver.get_variable_name(m[k]) << "=" << vvr(m[k]) << ")";
|
||||
if (k + 1 < m.size()) out << "*";
|
||||
}
|
||||
return out;
|
||||
|
@ -2215,7 +2215,8 @@ struct solver::imp {
|
|||
if (v.is_zero())
|
||||
continue;
|
||||
|
||||
if (order_lemma_on_factor(rm, ac, k, derived)) {
|
||||
if (order_lemma_on_factor(rm, ac, k, derived)) {
|
||||
TRACE("nla_solver", print_lemma(tout););
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue