summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine.h')
-rw-r--r--src/smt/smt_engine.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/smt/smt_engine.h b/src/smt/smt_engine.h
index 4df9054a7..efb2425a1 100644
--- a/src/smt/smt_engine.h
+++ b/src/smt/smt_engine.h
@@ -309,7 +309,7 @@ public:
* Query information about the SMT environment.
*/
SExpr getInfo(const std::string& key) const
- throw(BadOptionException);
+ throw(BadOptionException, ModalException);
/**
* Set an aspect of the current SMT execution environment.
@@ -536,6 +536,13 @@ public:
unsigned long getTimeRemaining() const throw(ModalException);
/**
+ * Permit access to the underlying ExprManager.
+ */
+ ExprManager* getExprManager() const {
+ return d_exprManager;
+ }
+
+ /**
* Permit access to the underlying StatisticsRegistry.
*/
StatisticsRegistry* getStatisticsRegistry() const;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback