Skip to content

Commit 016732a

Browse files
move some tracing to verbose
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent ea8ef3e commit 016732a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/nlsat/nlsat_solver.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ namespace nlsat {
562562

563563
void del(atom * a) {
564564
if (a == nullptr)
565-
return ;
566-
TRACE("nlsat", display(tout << "del: b" << a->m_bool_var << " ", *a) << "\n";);
565+
return;
566+
TRACE("nlsat_verbose", display(tout << "del: b" << a->m_bool_var << " ", *a) << "\n";);
567567
if (a->is_ineq_atom())
568568
del(to_ineq_atom(a));
569569
else
@@ -625,7 +625,7 @@ namespace nlsat {
625625
bool_var b = mk_bool_var_core();
626626
m_atoms[b] = atom;
627627
atom->m_bool_var = b;
628-
TRACE("nlsat", display(tout << "create: b" << atom->m_bool_var << " ", *atom) << "\n";);
628+
TRACE("nlsat_verbose", display(tout << "create: b" << atom->m_bool_var << " ", *atom) << "\n";);
629629
return b;
630630
}
631631
}
@@ -1733,7 +1733,7 @@ namespace nlsat {
17331733
tout << "new valid clause:\n";
17341734
display(tout, m_lazy_clause.size(), m_lazy_clause.c_ptr()) << "\n";);
17351735

1736-
if (m_check_lemmas) {
1736+
if (m_check_lemmas && false) {
17371737
check_lemma(m_lazy_clause.size(), m_lazy_clause.c_ptr(), true, nullptr);
17381738
}
17391739

src/smt/theory_datatype.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,7 @@ namespace smt {
945945
func_decl * r = nullptr;
946946
m_stats.m_splits++;
947947

948+
948949
if (d->m_recognizers.empty()) {
949950
r = m_util.get_constructor_is(non_rec_c);
950951
}

0 commit comments

Comments
 (0)