summaryrefslogtreecommitdiff
path: root/src/theory/term_registration_visitor.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-12-01 15:13:58 +0000
committerMorgan Deters <mdeters@gmail.com>2012-12-01 15:13:58 +0000
commite820acb9e220389e9a7e23bcffd97f1d0354f612 (patch)
tree2c968d847c87ec363cf6add1ac3cf8cfbf4902a1 /src/theory/term_registration_visitor.cpp
parentec29471e427bf25034a93c182b424730d439a90a (diff)
remove instantiator framework
(this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/theory/term_registration_visitor.cpp')
-rw-r--r--src/theory/term_registration_visitor.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/theory/term_registration_visitor.cpp b/src/theory/term_registration_visitor.cpp
index c32d6ff75..b41089b80 100644
--- a/src/theory/term_registration_visitor.cpp
+++ b/src/theory/term_registration_visitor.cpp
@@ -102,9 +102,6 @@ void PreRegisterVisitor::visit(TNode current, TNode parent) {
d_visited[current] = visitedTheories;
Theory* th = d_engine->theoryOf(currentTheoryId);
th->preRegisterTerm(current);
- if(th->getInstantiator() != NULL) {
- th->getInstantiator()->preRegisterTerm(current);
- }
Debug("register::internal") << "PreRegisterVisitor::visit(" << current << "," << parent << "): adding " << currentTheoryId << std::endl;
}
if (!Theory::setContains(parentTheoryId, visitedTheories)) {
@@ -112,9 +109,6 @@ void PreRegisterVisitor::visit(TNode current, TNode parent) {
d_visited[current] = visitedTheories;
Theory* th = d_engine->theoryOf(parentTheoryId);
th->preRegisterTerm(current);
- if(th->getInstantiator() != NULL) {
- th->getInstantiator()->preRegisterTerm(current);
- }
Debug("register::internal") << "PreRegisterVisitor::visit(" << current << "," << parent << "): adding " << parentTheoryId << std::endl;
}
if (useType) {
@@ -124,9 +118,6 @@ void PreRegisterVisitor::visit(TNode current, TNode parent) {
d_visited[current] = visitedTheories;
Theory* th = d_engine->theoryOf(typeTheoryId);
th->preRegisterTerm(current);
- if(th->getInstantiator() != NULL) {
- th->getInstantiator()->preRegisterTerm(current);
- }
Debug("register::internal") << "PreRegisterVisitor::visit(" << current << "," << parent << "): adding " << parentTheoryId << std::endl;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback