Skip to content

Commit 2d08baf

Browse files
fix #4219
1 parent 1a642b4 commit 2d08baf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/smt/theory_pb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@ namespace smt {
20442044
}
20452045

20462046
bool theory_pb::is_proof_justification(justification const& j) const {
2047-
return typeid(smt::justification_proof_wrapper) == typeid(j);
2047+
return typeid(smt::justification_proof_wrapper) == typeid(j) || get_manager().proofs_enabled();
20482048
}
20492049

20502050
justification* theory_pb::justify(literal l1, literal l2) {

0 commit comments

Comments
 (0)