Skip to content

Commit

Permalink
fix #5392
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jul 7, 2021
1 parent 897cbf3 commit 2973d3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/smt/smt_context_pp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -608,14 +608,14 @@ namespace smt {
clause * cls = j.get_clause();
out << "clause ";
if (cls) out << literal_vector(cls->get_num_literals(), cls->begin());
if (cls) display_literals_smt2(out << "\n", cls->get_num_literals(), cls->begin());
// if (cls) display_literals_smt2(out << "\n", cls->get_num_literals(), cls->begin());
break;
}
case b_justification::JUSTIFICATION: {
literal_vector lits;
const_cast<conflict_resolution&>(*m_conflict_resolution).justification2literals(j.get_justification(), lits);
out << "justification " << j.get_justification()->get_from_theory() << ": ";
display_literals_smt2(out, lits);
// display_literals_smt2(out, lits);
break;
}
default:
Expand Down

0 comments on commit 2973d3b

Please sign in to comment.