From 2973d3bdc1fd01e710f312e15508445a9716ce3f Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Wed, 7 Jul 2021 23:43:30 +0200 Subject: [PATCH] fix #5392 --- src/smt/smt_context_pp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/smt/smt_context_pp.cpp b/src/smt/smt_context_pp.cpp index b93d10e8e..3f826c2d1 100644 --- a/src/smt/smt_context_pp.cpp +++ b/src/smt/smt_context_pp.cpp @@ -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(*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: