mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
move some tracing to verbose
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ea8ef3edf8
commit
016732aa59
|
@ -562,8 +562,8 @@ namespace nlsat {
|
||||||
|
|
||||||
void del(atom * a) {
|
void del(atom * a) {
|
||||||
if (a == nullptr)
|
if (a == nullptr)
|
||||||
return ;
|
return;
|
||||||
TRACE("nlsat", display(tout << "del: b" << a->m_bool_var << " ", *a) << "\n";);
|
TRACE("nlsat_verbose", display(tout << "del: b" << a->m_bool_var << " ", *a) << "\n";);
|
||||||
if (a->is_ineq_atom())
|
if (a->is_ineq_atom())
|
||||||
del(to_ineq_atom(a));
|
del(to_ineq_atom(a));
|
||||||
else
|
else
|
||||||
|
@ -625,7 +625,7 @@ namespace nlsat {
|
||||||
bool_var b = mk_bool_var_core();
|
bool_var b = mk_bool_var_core();
|
||||||
m_atoms[b] = atom;
|
m_atoms[b] = atom;
|
||||||
atom->m_bool_var = b;
|
atom->m_bool_var = b;
|
||||||
TRACE("nlsat", display(tout << "create: b" << atom->m_bool_var << " ", *atom) << "\n";);
|
TRACE("nlsat_verbose", display(tout << "create: b" << atom->m_bool_var << " ", *atom) << "\n";);
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1733,7 +1733,7 @@ namespace nlsat {
|
||||||
tout << "new valid clause:\n";
|
tout << "new valid clause:\n";
|
||||||
display(tout, m_lazy_clause.size(), m_lazy_clause.c_ptr()) << "\n";);
|
display(tout, m_lazy_clause.size(), m_lazy_clause.c_ptr()) << "\n";);
|
||||||
|
|
||||||
if (m_check_lemmas) {
|
if (m_check_lemmas && false) {
|
||||||
check_lemma(m_lazy_clause.size(), m_lazy_clause.c_ptr(), true, nullptr);
|
check_lemma(m_lazy_clause.size(), m_lazy_clause.c_ptr(), true, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -945,6 +945,7 @@ namespace smt {
|
||||||
func_decl * r = nullptr;
|
func_decl * r = nullptr;
|
||||||
m_stats.m_splits++;
|
m_stats.m_splits++;
|
||||||
|
|
||||||
|
|
||||||
if (d->m_recognizers.empty()) {
|
if (d->m_recognizers.empty()) {
|
||||||
r = m_util.get_constructor_is(non_rec_c);
|
r = m_util.get_constructor_is(non_rec_c);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue