summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-03 14:23:48 -0500
committerGitHub <noreply@github.com>2018-05-03 14:23:48 -0500
commitaf67146760804bd18cb85414c17021131d03dcf1 (patch)
tree405c24d08b7ff7001142614b99845cdcf80b6f98 /src/theory/theory_engine.cpp
parent64e7ff24ad33a1fb297adfda8ec5aa4631ed9dba (diff)
Interleave quantifiers checks with ground theory checks at LAST_CALL (#1834)
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 885c36bb5..edea22fbf 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -612,7 +612,8 @@ void TheoryEngine::check(Theory::Effort effort) {
}
}
}
- if( ! d_inConflict && ! needCheck() ){
+ if (!d_inConflict)
+ {
if(d_logicInfo.isQuantified()) {
// quantifiers engine must check at last call effort
d_quantEngine->check(Theory::EFFORT_LAST_CALL);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback