summaryrefslogtreecommitdiff
path: root/src/theory/model_manager.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-20 06:42:51 -0500
committerGitHub <noreply@github.com>2021-03-20 11:42:51 +0000
commit02dd48563db0c5effd608eda70d4c262309322a6 (patch)
treea64819d326b5d9d029e47b6ba14ead7c7b23628c /src/theory/model_manager.cpp
parenta374f7b577b48908d623cf7b64594f1c98cfb8b7 (diff)
Improved tracing for equivalence classes of EE (#6169)
Helps debugging model issues.
Diffstat (limited to 'src/theory/model_manager.cpp')
-rw-r--r--src/theory/model_manager.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/theory/model_manager.cpp b/src/theory/model_manager.cpp
index b9057604e..d77a88d67 100644
--- a/src/theory/model_manager.cpp
+++ b/src/theory/model_manager.cpp
@@ -99,6 +99,16 @@ bool ModelManager::buildModel()
// now, finish building the model
d_modelBuiltSuccess = finishBuildModel();
+
+ if (Trace.isOn("model-builder"))
+ {
+ Trace("model-builder") << "Final model:" << std::endl;
+ Trace("model-builder") << d_model->debugPrintModelEqc() << std::endl;
+ }
+
+ Trace("model-builder") << "ModelManager: model built success is "
+ << d_modelBuiltSuccess << std::endl;
+
return d_modelBuiltSuccess;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback