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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 8bd151f31..e06cf0d12 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -985,7 +985,7 @@ Node TheoryArith::axiomIteForTotalDivision(Node div_tot){
Comparison invEq = Comparison::mkComparison(EQUAL, n, d * div_tot_p);
Comparison zeroEq = Comparison::mkComparison(EQUAL, div_tot_p, Polynomial::mkZero());
Node dEq0 = (d.getNode()).eqNode(mkRationalNode(0));
- Node ite = dEq0.iteNode(zeroEq.getNode(), invEq.getNode());
+ Node ite = dEq0.iteNode(zeroEq.getNode(), invEq.getNode());
return ite;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback