summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-11-02 01:48:41 +0000
committerMorgan Deters <mdeters@gmail.com>2011-11-02 01:48:41 +0000
commit161bf31cfa76271542790ec9a2c052e35d6bb1cb (patch)
tree4599f90f5307c527a520cc3cf549ec0323fdd5d8 /src/theory/theory_engine.cpp
parentb335fcb563d61665259248bfc9b74fa807071e6a (diff)
fully implement the always-check-again-after-the-output-channel-is-used fix for bug #275. will finally close #275.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index e09e9f47f..386b8bbd4 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -125,6 +125,10 @@ void TheoryEngine::check(Theory::Effort effort) {
// Mark the lemmas flag (no lemmas added)
d_lemmasAdded = false;
+ // Mark the output channel unused (if this is FULL_EFFORT, and nothing
+ // is done by the theories, no additional check will be needed)
+ d_outputChannelUsed = false;
+
while (true) {
Debug("theory") << "TheoryEngine::check(" << effort << "): running check" << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback