projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7146e9e
)
In the constructor of DecisionEngine, there were 2 pointers that were assumed to...
author
Tim King
<taking@cs.nyu.edu>
Thu, 19 Apr 2012 18:36:02 +0000
(18:36 +0000)
committer
Tim King
<taking@cs.nyu.edu>
Thu, 19 Apr 2012 18:36:02 +0000
(18:36 +0000)
src/decision/decision_engine.cpp
patch
|
blob
|
history
diff --git
a/src/decision/decision_engine.cpp
b/src/decision/decision_engine.cpp
index 936ac8e73bcd073f6dce0a731a42e59cfae746cb..dbdbb83a992b02c396125755cfac05685ee32b81 100644
(file)
--- a/
src/decision/decision_engine.cpp
+++ b/
src/decision/decision_engine.cpp
@@
-26,7
+26,11
@@
using namespace std;
namespace CVC4 {
-DecisionEngine::DecisionEngine() : d_needSimplifiedPreITEAssertions() {
+DecisionEngine::DecisionEngine() :
+ d_needSimplifiedPreITEAssertions(),
+ d_cnfStream(NULL),
+ d_satSolver(NULL)
+{
const Options* options = Options::current();
Trace("decision") << "Creating decision engine" << std::endl;
if(options->decisionMode == Options::DECISION_STRATEGY_INTERNAL) { }