summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_model.cpp')
-rw-r--r--src/theory/theory_model.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory_model.cpp b/src/theory/theory_model.cpp
index de48c956a..4de0d6a54 100644
--- a/src/theory/theory_model.cpp
+++ b/src/theory/theory_model.cpp
@@ -586,7 +586,7 @@ bool TheoryEngineModelBuilder::buildModel(Model* m)
Trace("model-builder") << "TheoryEngineModelBuilder: buildModel" << std::endl;
TheoryModel* tm = (TheoryModel*)m;
- // buildModel with fullModel = true should only be called once in any context
+ // buildModel should only be called once per check
Assert(!tm->isBuilt());
tm->d_modelBuilt = true;
@@ -595,7 +595,7 @@ bool TheoryEngineModelBuilder::buildModel(Model* m)
// Collect model info from the theories
Trace("model-builder") << "TheoryEngineModelBuilder: Collect model info..." << std::endl;
- d_te->collectModelInfo(tm, true);
+ d_te->collectModelInfo(tm);
// model-builder specific initialization
if( !preProcessBuildModel(tm) ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback