Skip to content

Commit

Permalink
update format and checker for implied-eq
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Jul 27, 2023
1 parent f0184c3 commit 7135283
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/sat/smt/euf_proof.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,6 @@ namespace euf {

void solver::display_inferred(std::ostream& out, unsigned n, literal const* lits, expr* proof_hint) {
expr_ref hint(proof_hint, m);
if (!proof_hint)
verbose_stream() << hint << "\n";
if (!hint)
hint = m.mk_const(m_smt, m.mk_proof_sort());
visit_expr(out, hint);
Expand Down
3 changes: 0 additions & 3 deletions src/sat/smt/sat_th.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,6 @@ namespace euf {
m_literals[i] = lits[i];
base_ptr += sizeof(literal) * n_lits;
m_eqs = reinterpret_cast<enode_pair*>(base_ptr);
if (!pma) {
verbose_stream() << "null\n";
}
for (i = 0; i < n_eqs; ++i) {
m_eqs[i] = eqs[i];
if (m_eqs[i].first->get_id() > m_eqs[i].second->get_id())
Expand Down

0 comments on commit 7135283

Please sign in to comment.