mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix #4219
This commit is contained in:
parent
1a642b4311
commit
2d08baf3d5
|
@ -2044,7 +2044,7 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool theory_pb::is_proof_justification(justification const& j) const {
|
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) {
|
justification* theory_pb::justify(literal l1, literal l2) {
|
||||||
|
|
Loading…
Reference in a new issue