summaryrefslogtreecommitdiff
path: root/src/theory/term_registration_visitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/term_registration_visitor.h')
-rw-r--r--src/theory/term_registration_visitor.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/term_registration_visitor.h b/src/theory/term_registration_visitor.h
index 768508d2c..5f89af9c6 100644
--- a/src/theory/term_registration_visitor.h
+++ b/src/theory/term_registration_visitor.h
@@ -95,7 +95,11 @@ public:
* Notifies the engine of all the theories used.
*/
bool done(TNode node);
-
+ ~PreRegisterVisitor() {
+ for (TNodeToTheorySetMap::const_iterator it = d_visited.begin(); it != d_visited.end(); ++it) {
+ std::cout << it->first <<"\n";
+ }
+ }
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback