mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
adjust logging
This commit is contained in:
parent
87e45221fd
commit
4388719848
|
@ -656,7 +656,6 @@ namespace sat {
|
|||
if (m_out) dump(1, &l, st);
|
||||
if (m_bout) bdump(1, &l, st);
|
||||
if (m_check) append(l, st);
|
||||
TRACE("sat", tout << "add " << m_clause_eh << "\n");
|
||||
if (m_clause_eh) m_clause_eh->on_clause(1, &l, st);
|
||||
}
|
||||
void drat::add(literal l1, literal l2, status st) {
|
||||
|
|
|
@ -69,7 +69,7 @@ namespace arith {
|
|||
}
|
||||
|
||||
std::ostream& solver::display_justification(std::ostream& out, sat::ext_justification_idx idx) const {
|
||||
return euf::th_explain::from_index(idx).display(out);
|
||||
return euf::th_explain::from_index(idx).display(out << "arith ");
|
||||
}
|
||||
|
||||
std::ostream& solver::display_constraint(std::ostream& out, sat::ext_constraint_idx idx) const {
|
||||
|
|
|
@ -76,7 +76,6 @@ namespace arith {
|
|||
}
|
||||
|
||||
bool solver::unit_propagate() {
|
||||
TRACE("arith", tout << "unit propagate\n";);
|
||||
m_model_is_initialized = false;
|
||||
if (!m_solver->has_changed_columns() && !m_new_eq && m_new_bounds.empty() && m_asserted_qhead == m_asserted.size())
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue