summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index d34f0cd12..48f8b257c 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -92,7 +92,9 @@ void TheoryEngine::finishInit() {
}
void TheoryEngine::eqNotifyNewClass(TNode t){
- d_quantEngine->addTermToDatabase( t );
+ if( d_logicInfo.isQuantified() ){
+ d_quantEngine->addTermToDatabase( t );
+ }
}
void TheoryEngine::eqNotifyPreMerge(TNode t1, TNode t2){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback