From: Dejan Jovanović Date: Tue, 12 Jun 2012 18:53:40 +0000 (+0000) Subject: conflicts from theories are removable X-Git-Tag: cvc5-1.0.0~8062 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5cdb4202b65d59aafa4156664400338958a3aa1;p=cvc5.git conflicts from theories are removable --- diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp index a7c378152..a047b2b06 100644 --- a/src/theory/theory_engine.cpp +++ b/src/theory/theory_engine.cpp @@ -1137,11 +1137,11 @@ void TheoryEngine::conflict(TNode conflict, TheoryId theoryId) { Node fullConflict = mkExplanation(explanationVector); Debug("theory::conflict") << "TheoryEngine::conflict(" << conflict << ", " << theoryId << "): full = " << fullConflict << std::endl; Assert(properConflict(fullConflict)); - lemma(fullConflict, true, false); + lemma(fullConflict, true, true); } else { // When only one theory, the conflict should need no processing Assert(properConflict(conflict)); - lemma(conflict, true, false); + lemma(conflict, true, true); } }