summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-03-03 23:39:43 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-03-03 23:39:43 +0000
commit5efc0cd28524a45b8fb25c4b1c0f8c42830fc3ef (patch)
tree22f2c0773841c92bdf0b522787eac860e6a76103 /src/prop/prop_engine.h
parent2b87789ee57a738cccd89dd9d2d81b065875dc29 (diff)
Some SAT stuff, not doing anything special yet, just to keep it in sync.
Diffstat (limited to 'src/prop/prop_engine.h')
-rw-r--r--src/prop/prop_engine.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/prop/prop_engine.h b/src/prop/prop_engine.h
index f57161fde..0c3916162 100644
--- a/src/prop/prop_engine.h
+++ b/src/prop/prop_engine.h
@@ -53,7 +53,9 @@ class PropEngine {
/** The theory engine we will be using */
TheoryEngine *d_theoryEngine;
- /** The SAT solver*/
+ context::Context* d_context;
+
+ /** The SAT solver proxy */
SatSolver* d_satSolver;
/** List of all of the assertions that need to be made */
@@ -67,7 +69,7 @@ public:
/**
* Create a PropEngine with a particular decision and theory engine.
*/
- PropEngine(const Options*, DecisionEngine*, TheoryEngine*);
+ PropEngine(const Options*, DecisionEngine*, TheoryEngine*, context::Context*);
/**
* Destructor.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback