summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2014-03-06 21:27:37 -0600
committerTianyi Liang <tianyi-liang@uiowa.edu>2014-03-06 21:33:41 -0600
commit505c0c6275b2a2b22ff6a8e08f61050dc9b28e7e (patch)
tree92dc0e4a9c9d381b62d412c94276adf53a3aa55b /src/theory/theory_engine.cpp
parentac2b9f075ce9a371ed6dd67a5f66747a1e6acd72 (diff)
adds incremental for strings; clean-up codes
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index c29177b49..c67a7c4bb 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -419,6 +419,10 @@ void TheoryEngine::check(Theory::Effort effort) {
// must build model at this point
d_curr_model_builder->buildModel(d_curr_model, true);
}
+ Trace("theory::assertions-model") << endl;
+ if (Trace.isOn("theory::assertions-model")) {
+ printAssertions("theory::assertions-model");
+ }
}
Debug("theory") << "TheoryEngine::check(" << effort << "): done, we are " << (d_inConflict ? "unsat" : "sat") << (d_lemmasAdded ? " with new lemmas" : " with no new lemmas") << endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback