summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index 32be206b0..96154063d 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -12,8 +12,8 @@
**
**/
+#include "sat.h"
#include "prop/prop_engine.h"
-#include "prop/cnf_stream.h"
#include "theory/theory_engine.h"
#include "util/decision_engine.h"
@@ -42,6 +42,7 @@ PropEngine::PropEngine(const Options* opts, DecisionEngine* de,
Debug("prop") << "Constructing the PropEngine" << endl;
d_satSolver = new SatSolver(this, d_theoryEngine, d_context, d_options);
d_cnfStream = new CVC4::prop::TseitinCnfStream(d_satSolver);
+ d_satSolver->setCnfStream(d_cnfStream);
}
PropEngine::~PropEngine() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback