summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2017-04-04 11:21:30 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2017-04-04 11:21:30 -0500
commit6c0a62d69368b1af7e9777efcd703da6dc1cda11 (patch)
tree677d518d345a230c35bfbcb016fca199185f131e /src/theory/theory_model.cpp
parent6cb3f49d3933061000fe63d2ee7e004cae06d6ba (diff)
Simplify Theory::collectModelInfo interface to not take deprecated fullModel argument.
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