projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d50387
)
Small fix for IS_INTEGER.
author
Morgan Deters
<mdeters@cs.nyu.edu>
Thu, 27 Jun 2013 19:34:32 +0000
(15:34 -0400)
committer
Morgan Deters
<mdeters@cs.nyu.edu>
Thu, 27 Jun 2013 20:46:22 +0000
(16:46 -0400)
src/theory/arith/theory_arith_private.cpp
patch
|
blob
|
history
diff --git
a/src/theory/arith/theory_arith_private.cpp
b/src/theory/arith/theory_arith_private.cpp
index a01397973f7fc2d77bf1a0bc0497ed749969d657..f5b1d20ce144b287361797da75d0662879e0982a 100644
(file)
--- 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, n
ode
[0], intVar);
+ Node node = nm->mkNode(kind::EQUAL, n[0], intVar);
return node;
}
Unreachable();