From 84b8611466e01c6894ec5645cd805e849d70d423 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dejan=20Jovanovi=C4=87?= Date: Thu, 8 Mar 2012 18:54:02 +0000 Subject: [PATCH] Fixin the bug Clark found. In final check, enqueued propagations were not discharged. --- src/prop/minisat/core/Solver.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/prop/minisat/core/Solver.cc b/src/prop/minisat/core/Solver.cc index 9f3285fff..1e31e354b 100644 --- a/src/prop/minisat/core/Solver.cc +++ b/src/prop/minisat/core/Solver.cc @@ -667,6 +667,8 @@ CRef Solver::propagate(TheoryCheckType type) if (type == CHECK_FINAL) { // Do the theory check theoryCheck(CVC4::theory::Theory::EFFORT_FULL); + // Pick up the theory propagated literals (there could be some, if new lemmas are added) + propagateTheory(); // If there are lemmas (or conflicts) update them if (lemmas.size() > 0) { recheck = true; -- 2.30.2