summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-04-08 15:06:38 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-04-09 14:51:22 -0400
commitf328d181c943237367a9f7374199ef5e58285faf (patch)
tree839cb4742f8a61a0f7b73a6cbb1d7943cbdef850 /src/theory/theory.h
parentb6d9f0bd9058db1358897834ac987f5d34de8734 (diff)
more
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index ff648e1f2..c86aa17de 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -229,12 +229,14 @@ protected:
/**
* Helper function for computeRelevantTerms
*/
- void collectTerms(TNode n, std::set<Node>& termSet);
+ void collectTerms(TNode n, std::set<Node>& termSet) const;
/**
- * Scans the current set of assertions and shared terms top-down until a theory-leaf is reached, and adds all terms found to termSet.
- * This is used by collectModelInfo to delimit the set of terms that should be used when constructing a model
+ * Scans the current set of assertions and shared terms top-down
+ * until a theory-leaf is reached, and adds all terms found to
+ * termSet. This is used by collectModelInfo to delimit the set of
+ * terms that should be used when constructing a model
*/
- void computeRelevantTerms(std::set<Node>& termSet);
+ void computeRelevantTerms(std::set<Node>& termSet) const;
/**
* Construct a Theory.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback