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.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/prop/prop_engine.h b/src/prop/prop_engine.h
index 39182204c..753890087 100644
--- a/src/prop/prop_engine.h
+++ b/src/prop/prop_engine.h
@@ -32,6 +32,10 @@ namespace CVC4 {
class DecisionEngine;
class TheoryEngine;
+namespace theory {
+ class TheoryRegistrar;
+}/* CVC4::theory namespace */
+
namespace prop {
class CnfStream;
@@ -132,12 +136,18 @@ class PropEngine {
/** The context */
context::Context* d_context;
+ /** SAT solver's proxy back to theories; kept around for dtor cleanup */
+ TheoryProxy* d_theoryProxy;
+
/** The SAT solver proxy */
DPLLSatSolverInterface* d_satSolver;
/** List of all of the assertions that need to be made */
std::vector<Node> d_assertionList;
+ /** Theory registrar; kept around for destructor cleanup */
+ theory::TheoryRegistrar* d_registrar;
+
/** The CNF converter in use */
CnfStream* d_cnfStream;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback