summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/theory_arith.cpp')
-rw-r--r--src/theory/arith/theory_arith.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 269ca083b..c5f0620f9 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -331,8 +331,10 @@ EqualityStatus TheoryArith::getEqualityStatus(TNode a, TNode b) {
{
return d_internal->getEqualityStatus(a,b);
}
- Node aval = Rewriter::rewrite(a.substitute(d_arithModelCache.begin(), d_arithModelCache.end()));
- Node bval = Rewriter::rewrite(b.substitute(d_arithModelCache.begin(), d_arithModelCache.end()));
+ Node aval =
+ rewrite(a.substitute(d_arithModelCache.begin(), d_arithModelCache.end()));
+ Node bval =
+ rewrite(b.substitute(d_arithModelCache.begin(), d_arithModelCache.end()));
if (aval == bval)
{
return EQUALITY_TRUE_IN_MODEL;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback