summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index be3df349a..5c6d028e5 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -3835,6 +3835,8 @@ Node SmtEngine::postprocess(TNode node, TypeNode expectedType) const {
Debug("boolean-terms") << "postproc: got " << value << " expect type " << expectedType << endl;
Node realValue = mpost.rewriteAs(value, expectedType);
Debug("boolean-terms") << "postproc: realval " << realValue << " expect type " << expectedType << endl;
+ realValue = Rewriter::rewrite(realValue);
+ Debug("boolean-terms") << "postproc: after rewrite " << realValue << endl;
return realValue;
}
@@ -4287,6 +4289,7 @@ void SmtEngine::checkModel(bool hardFailure) {
// In case it's a quantifier (or contains one), look up its value before
// simplifying, or the quantifier might be irreparably altered.
n = m->getValue(n);
+ Notice() << "SmtEngine::checkModel(): -- get value : " << n << std::endl;
} else {
// Note this "skip" is done here, rather than above. This is
// because (1) the quantifier could in principle simplify to false,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback