projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
156e88c
)
initialization in model_engine
author
Kshitij Bansal
<kshitij@cs.nyu.edu>
Mon, 21 Jul 2014 22:50:36 +0000
(18:50 -0400)
committer
Kshitij Bansal
<kshitij@cs.nyu.edu>
Mon, 21 Jul 2014 22:50:36 +0000
(18:50 -0400)
src/theory/quantifiers/model_engine.cpp
patch
|
blob
|
history
diff --git
a/src/theory/quantifiers/model_engine.cpp
b/src/theory/quantifiers/model_engine.cpp
index d68c66535bddc219518434112812664d32f2d415..3c2f9903eda7482f93997e88aabe72dc7e8c3600 100644
(file)
--- a/
src/theory/quantifiers/model_engine.cpp
+++ b/
src/theory/quantifiers/model_engine.cpp
@@
-35,7
+35,12
@@
using namespace CVC4::theory::inst;
//Model Engine constructor
ModelEngine::ModelEngine( context::Context* c, QuantifiersEngine* qe ) :
-QuantifiersModule( qe ){
+QuantifiersModule( qe ),
+d_incomplete_check(false),
+d_addedLemmas(0),
+d_triedLemmas(0),
+d_totalLemmas(0)
+{
Trace("model-engine-debug") << "Initialize model engine, mbqi : " << options::mbqiMode() << " " << options::fmfBoundInt() << std::endl;
if( options::mbqiMode()==MBQI_FMC || options::mbqiMode()==quantifiers::MBQI_FMC_INTERVAL ||