initialization in model_engine
authorKshitij Bansal <kshitij@cs.nyu.edu>
Mon, 21 Jul 2014 22:50:36 +0000 (18:50 -0400)
committerKshitij Bansal <kshitij@cs.nyu.edu>
Mon, 21 Jul 2014 22:50:36 +0000 (18:50 -0400)
src/theory/quantifiers/model_engine.cpp

index d68c66535bddc219518434112812664d32f2d415..3c2f9903eda7482f93997e88aabe72dc7e8c3600 100644 (file)
@@ -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 ||