summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-06-27 15:34:32 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-06-27 16:46:22 -0400
commite6f4f9fbd3e2e3471f0df46959e3924368f31bdb (patch)
tree6be7b290ace0f17284c4a5003393c81dde1c0780
parent5d5038723c202b04272f14abc64e7b6a0bbe2979 (diff)
Small fix for IS_INTEGER.
-rw-r--r--src/theory/arith/theory_arith_private.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/theory_arith_private.cpp b/src/theory/arith/theory_arith_private.cpp
index a01397973..f5b1d20ce 100644
--- a/src/theory/arith/theory_arith_private.cpp
+++ b/src/theory/arith/theory_arith_private.cpp
@@ -775,7 +775,7 @@ Node TheoryArithPrivate::ppRewriteTerms(TNode n) {
Node node = intVar;
return node;
} else {
- Node node = nm->mkNode(kind::EQUAL, node[0], intVar);
+ Node node = nm->mkNode(kind::EQUAL, n[0], intVar);
return node;
}
Unreachable();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback