summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2019-01-07 09:02:02 -0800
committerGitHub <noreply@github.com>2019-01-07 09:02:02 -0800
commit1f6fb54967659ff2ee3f8c29a8d306499fcf1299 (patch)
tree4ebdd4569230e55882ccbc61cb8b8f6ef3bb89ff /src/api
parent610952322417e3758f2b62300f618721c269b2b3 (diff)
New C++ API: Add missing getType() calls to kick off type checking. (#2773)
Diffstat (limited to 'src/api')
-rw-r--r--src/api/cvc4cpp.cpp28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/api/cvc4cpp.cpp b/src/api/cvc4cpp.cpp
index d9a395d15..f9dfaa143 100644
--- a/src/api/cvc4cpp.cpp
+++ b/src/api/cvc4cpp.cpp
@@ -1035,7 +1035,9 @@ Term Term::notTerm() const
{
try
{
- return d_expr->notExpr();
+ Term res = d_expr->notExpr();
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1047,7 +1049,9 @@ Term Term::andTerm(const Term& t) const
{
try
{
- return d_expr->andExpr(*t.d_expr);
+ Term res = d_expr->andExpr(*t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1059,7 +1063,9 @@ Term Term::orTerm(const Term& t) const
{
try
{
- return d_expr->orExpr(*t.d_expr);
+ Term res = d_expr->orExpr(*t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1071,7 +1077,9 @@ Term Term::xorTerm(const Term& t) const
{
try
{
- return d_expr->xorExpr(*t.d_expr);
+ Term res = d_expr->xorExpr(*t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1083,7 +1091,9 @@ Term Term::eqTerm(const Term& t) const
{
try
{
- return d_expr->eqExpr(*t.d_expr);
+ Term res = d_expr->eqExpr(*t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1095,7 +1105,9 @@ Term Term::impTerm(const Term& t) const
{
try
{
- return d_expr->impExpr(*t.d_expr);
+ Term res = d_expr->impExpr(*t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
@@ -1107,7 +1119,9 @@ Term Term::iteTerm(const Term& then_t, const Term& else_t) const
{
try
{
- return d_expr->iteExpr(*then_t.d_expr, *else_t.d_expr);
+ Term res = d_expr->iteExpr(*then_t.d_expr, *else_t.d_expr);
+ (void)res.d_expr->getType(true); /* kick off type checking */
+ return res;
}
catch (const CVC4::TypeCheckingException& e)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback