summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-09-16 17:18:05 -0500
committerGitHub <noreply@github.com>2019-09-16 17:18:05 -0500
commit54abd196cb43422c77a74cb139f3aaebaa695639 (patch)
tree2a65e959b8d17d06fc953320ae15575133b95d17 /src/theory/theory_engine.cpp
parent9c4d548af9a14c18a6d69b41bba3e36054d37c0c (diff)
Remove equality inference option for quantifiers (#3282)
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index b8f6bf15c..8348c24d5 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -260,24 +260,6 @@ void TheoryEngine::eqNotifyNewClass(TNode t){
}
}
-void TheoryEngine::eqNotifyPreMerge(TNode t1, TNode t2){
- if (d_logicInfo.isQuantified()) {
- d_quantEngine->eqNotifyPreMerge( t1, t2 );
- }
-}
-
-void TheoryEngine::eqNotifyPostMerge(TNode t1, TNode t2){
- if (d_logicInfo.isQuantified()) {
- d_quantEngine->eqNotifyPostMerge( t1, t2 );
- }
-}
-
-void TheoryEngine::eqNotifyDisequal(TNode t1, TNode t2, TNode reason){
- if (d_logicInfo.isQuantified()) {
- d_quantEngine->eqNotifyDisequal( t1, t2, reason );
- }
-}
-
TheoryEngine::TheoryEngine(context::Context* context,
context::UserContext* userContext,
RemoveTermFormulas& iteRemover,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback