summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/prop_engine.h')
-rw-r--r--src/prop/prop_engine.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/prop/prop_engine.h b/src/prop/prop_engine.h
index 57ff3c5c0..dfa84ef14 100644
--- a/src/prop/prop_engine.h
+++ b/src/prop/prop_engine.h
@@ -25,10 +25,11 @@
#include "base/modal_exception.h"
#include "expr/node.h"
-#include "expr/result.h"
#include "options/options.h"
#include "proof/proof_manager.h"
+#include "smt/smt_globals.h"
#include "util/unsafe_interrupt_exception.h"
+#include "util/result.h"
namespace CVC4 {
@@ -91,12 +92,15 @@ class PropEngine {
/** Dump out the satisfying assignment (after SAT result) */
void printSatisfyingAssignment();
+ /** Container for misc. globals. */
+ SmtGlobals* d_globals;
+
public:
/**
* Create a PropEngine with a particular decision and theory engine.
*/
- PropEngine(TheoryEngine*, DecisionEngine*, context::Context* satContext, context::Context* userContext);
+ PropEngine(TheoryEngine*, DecisionEngine*, context::Context* satContext, context::Context* userContext, SmtGlobals* global);
/**
* Destructor.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback