summaryrefslogtreecommitdiff
path: root/src/theory/theory_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_state.h')
-rw-r--r--src/theory/theory_state.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/theory/theory_state.h b/src/theory/theory_state.h
index 2c7bad60b..58a66ef46 100644
--- a/src/theory/theory_state.h
+++ b/src/theory/theory_state.h
@@ -20,6 +20,7 @@
#include "context/cdo.h"
#include "expr/node.h"
+#include "smt/env.h"
#include "theory/valuation.h"
namespace cvc5 {
@@ -32,7 +33,8 @@ class EqualityEngine;
class TheoryState
{
public:
- TheoryState(context::Context* c, context::UserContext* u, Valuation val);
+ TheoryState(Env& env,
+ Valuation val);
virtual ~TheoryState() {}
/**
* Set equality engine, where ee is a pointer to the official equality engine
@@ -43,6 +45,8 @@ class TheoryState
context::Context* getSatContext() const;
/** Get the user context */
context::UserContext* getUserContext() const;
+ /** Get the environment */
+ Env& getEnv() const { return d_env; }
//-------------------------------------- equality information
/** Is t registered as a term in the equality engine of this class? */
virtual bool hasTerm(TNode a) const;
@@ -111,10 +115,8 @@ class TheoryState
Valuation& getValuation();
protected:
- /** Pointer to the SAT context object used by the theory. */
- context::Context* d_context;
- /** Pointer to the user context object used by the theory. */
- context::UserContext* d_ucontext;
+ /** Reference to the environment. */
+ Env& d_env;
/**
* The valuation proxy for the Theory to communicate back with the
* theory engine (and other theories).
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback