summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/term_util.cpp')
-rw-r--r--src/theory/quantifiers/term_util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers/term_util.cpp b/src/theory/quantifiers/term_util.cpp
index cb8bad174..beb02c1c5 100644
--- a/src/theory/quantifiers/term_util.cpp
+++ b/src/theory/quantifiers/term_util.cpp
@@ -329,7 +329,7 @@ bool TermUtil::isBoolConnectiveTerm( TNode n ) {
Node TermUtil::mkTypeValue(TypeNode tn, int32_t val)
{
Node n;
- if (tn.isInteger() || tn.isReal())
+ if (tn.isRealOrInt())
{
Rational c(val);
n = NodeManager::currentNM()->mkConst(CONST_RATIONAL, c);
@@ -382,7 +382,7 @@ Node TermUtil::mkTypeValueOffset(TypeNode tn,
status = -1;
if (!offset_val.isNull())
{
- if (tn.isInteger() || tn.isReal())
+ if (tn.isRealOrInt())
{
val_o = Rewriter::rewrite(
NodeManager::currentNM()->mkNode(PLUS, val, offset_val));
@@ -557,7 +557,7 @@ Node TermUtil::isSingularArg(Node n, Kind ik, unsigned arg)
}
else
{
- if (n.getType().isReal() && n.getConst<Rational>().sgn() < 0)
+ if (n.getType().isInteger() && n.getConst<Rational>().sgn() < 0)
{
// negative arguments
if (ik == STRING_SUBSTR || ik == STRING_CHARAT)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback