summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index a857931a8..bde00b908 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -450,6 +450,11 @@ class Theory {
Env& getEnv() const { return d_env; }
/**
+ * Shorthand to access the options object.
+ */
+ const Options& options() const { return getEnv().getOptions(); }
+
+ /**
* Get the SAT context associated to this Theory.
*/
context::Context* getSatContext() const { return d_env.getContext(); }
@@ -639,6 +644,19 @@ class Theory {
*/
virtual void computeRelevantTerms(std::set<Node>& termSet);
/**
+ * Collect asserted terms for this theory and add them to termSet.
+ *
+ * @param termSet The set to add terms to
+ * @param includeShared Whether to include the shared terms of the theory
+ */
+ void collectAssertedTerms(std::set<Node>& termSet,
+ bool includeShared = true) const;
+ /**
+ * Helper function for collectAssertedTerms, adds all subterms
+ * belonging to this theory to termSet.
+ */
+ void collectTerms(TNode n, std::set<Node>& termSet) const;
+ /**
* Collect model values, after equality information is added to the model.
* The argument termSet is the set of relevant terms returned by
* computeRelevantTerms.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback