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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 4ab8cb548..9abd6e165 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1439,9 +1439,9 @@ void SmtEngine::defineFunction(Expr func,
stringstream ss;
ss << "Declared type of defined constant does not match its definition\n"
<< "The constant : " << func << "\n"
- << "Declared type : " << funcType << "\n"
+ << "Declared type : " << funcType << " " << Type::getTypeNode(funcType)->getId() << "\n"
<< "The definition : " << formula << "\n"
- << "Definition type: " << formulaType;
+ << "Definition type: " << formulaType << " " << Type::getTypeNode(formulaType)->getId();
throw TypeCheckingException(func, ss.str());
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback