Skip to content

Commit

Permalink
fix #5808
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Feb 7, 2022
1 parent 3f3d058 commit 9958cab
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/smt/theory_pb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1881,10 +1881,9 @@ namespace smt {
inc_coeff(conseq, offset);
clause& cls = *js.get_clause();
justification* cjs = cls.get_justification();
if (cjs && !is_proof_justification(*cjs)) {
TRACE("pb", tout << "skipping justification for clause over: " << conseq << " "
<< typeid(*cjs).name() << "\n";);
break;
if (cjs && !is_proof_justification(*cjs)) {
TRACE("pb", tout << "not processing justification over: " << conseq << " " << typeid(*cjs).name() << "\n";);
return false;
}
unsigned num_lits = cls.get_num_literals();
if (cls.get_literal(0) == conseq) {
Expand Down

0 comments on commit 9958cab

Please sign in to comment.