3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-05-06 12:20:40 -07:00
parent 1a642b4311
commit 2d08baf3d5

View file

@ -2044,7 +2044,7 @@ namespace smt {
}
bool theory_pb::is_proof_justification(justification const& j) const {
return typeid(smt::justification_proof_wrapper) == typeid(j);
return typeid(smt::justification_proof_wrapper) == typeid(j) || get_manager().proofs_enabled();
}
justification* theory_pb::justify(literal l1, literal l2) {