summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-03-05 13:17:55 -0800
committerAina Niemetz <aina.niemetz@gmail.com>2020-03-05 13:17:55 -0800
commita4151cb6755b9267cb90f7facc0ffd367aa7f0f2 (patch)
treed8d5511eeb12ecace73845785546df95e8f67f1f /src/theory/theory_engine.cpp
parentbbba915f44f9e75eaa6238a10ba667643dacb00b (diff)
Revert "Move ownership of DecisionEngine into PropEngine. (#3850)"
This reverts commit bbba915f44f9e75eaa6238a10ba667643dacb00b.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 60ad00fc5..a39c014a6 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -315,6 +315,7 @@ TheoryEngine::TheoryEngine(context::Context* context,
RemoveTermFormulas& iteRemover,
const LogicInfo& logicInfo)
: d_propEngine(nullptr),
+ d_decisionEngine(nullptr),
d_context(context),
d_userContext(userContext),
d_logicInfo(logicInfo),
@@ -1923,9 +1924,8 @@ theory::LemmaStatus TheoryEngine::lemma(TNode node,
}
// assert to decision engine
- if (!removable)
- {
- d_propEngine->addAssertionsToDecisionEngine(additionalLemmas);
+ if(!removable) {
+ d_decisionEngine->addAssertions(additionalLemmas);
}
// Mark that we added some lemmas
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback