summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/prop/minisat/core/Solver.cc18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/prop/minisat/core/Solver.cc b/src/prop/minisat/core/Solver.cc
index 0967f434c..2136f22df 100644
--- a/src/prop/minisat/core/Solver.cc
+++ b/src/prop/minisat/core/Solver.cc
@@ -421,11 +421,19 @@ bool Solver::addClause_(vec<Lit>& ps, bool removable, ClauseId& id)
);
CRef confl = propagate(CHECK_WITHOUT_THEORY);
if(! (ok = (confl == CRef_Undef)) ) {
- if(ca[confl].size() == 1) {
- PROOF( id = ProofManager::getSatProof()->storeUnitConflict(ca[confl][0], LEARNT); );
- PROOF( ProofManager::getSatProof()->finalizeProof(CVC4::Minisat::CRef_Lazy); )
- } else {
- PROOF( ProofManager::getSatProof()->finalizeProof(confl); );
+ if (PROOF_ON())
+ {
+ if (ca[confl].size() == 1)
+ {
+ id = ProofManager::getSatProof()->storeUnitConflict(
+ ca[confl][0], LEARNT);
+ ProofManager::getSatProof()->finalizeProof(
+ CVC4::Minisat::CRef_Lazy);
+ }
+ else
+ {
+ ProofManager::getSatProof()->finalizeProof(confl);
+ }
}
}
return ok;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback