Skip to content

Commit

Permalink
remove VERBOSE 0
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 19, 2022
1 parent 7711576 commit 3f10933
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/ast/simplifiers/eliminate_predicates.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,6 @@ void eliminate_predicates::try_resolve(func_decl* p) {
++num_neg;

TRACE("elim_predicates", tout << "try resolve " << p->get_name() << " " << num_pos << " " << num_neg << "\n");
IF_VERBOSE(0, verbose_stream() << "try resolve " << p->get_name() << " " << num_pos << " " << num_neg << "\n");
// TODO - probe for a definition
// generally, probe for binary clause equivalences in binary implication graph

Expand Down Expand Up @@ -436,7 +435,6 @@ void eliminate_predicates::update_model(func_decl* p) {
def = mk_and(fmls);
}

IF_VERBOSE(0, verbose_stream() << p->get_name() << " " << def << "\n");
rewrite(def);
m_fmls.model_trail().push(p, def, deleted);
}
Expand Down Expand Up @@ -478,7 +476,6 @@ expr_ref eliminate_predicates::create_residue_formula(func_decl* p, clause& cl)
names.push_back(symbol(i));
fml = m.mk_exists(num_bound, cl.m_bound.data(), names.data(), fml, 1);
}
IF_VERBOSE(0, verbose_stream() << fml << "\n");
return fml;
}

Expand Down

0 comments on commit 3f10933

Please sign in to comment.