3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 02:04:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-30 15:02:55 -07:00
parent 0ca5f59e35
commit 8a961a5ce9
5 changed files with 8 additions and 9 deletions

View file

@ -4173,7 +4173,7 @@ namespace smt {
return true;
}
else if (m_fparams.m_clause_proof && !m.proofs_enabled()) {
m_unsat_proof = m_clause_proof.get_proof();
m_unsat_proof = m_clause_proof.get_proof(inconsistent());
}
else if (m.proofs_enabled()) {
m_unsat_proof = m_conflict_resolution->get_lemma_proof();
@ -4500,7 +4500,7 @@ namespace smt {
proof * context::get_proof() {
if (!m_unsat_proof) {
m_unsat_proof = m_clause_proof.get_proof();
m_unsat_proof = m_clause_proof.get_proof(inconsistent());
}
TRACE("context", tout << m_unsat_proof << "\n";);
return m_unsat_proof;