summaryrefslogtreecommitdiff
path: root/src/theory/arith
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith')
-rw-r--r--src/theory/arith/constraint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/constraint.cpp b/src/theory/arith/constraint.cpp
index 792d4b16c..392d04f6c 100644
--- a/src/theory/arith/constraint.cpp
+++ b/src/theory/arith/constraint.cpp
@@ -590,10 +590,10 @@ Node ConstraintValue::split(){
TNode lhs = eqNode[0];
TNode rhs = eqNode[1];
- Node ltNode = NodeBuilder<2>(kind::LT) << lhs << rhs;
- Node gtNode = NodeBuilder<2>(kind::GT) << lhs << rhs;
+ Node leqNode = NodeBuilder<2>(kind::LEQ) << lhs << rhs;
+ Node geqNode = NodeBuilder<2>(kind::GEQ) << lhs << rhs;
- Node lemma = NodeBuilder<3>(OR) << eqNode << ltNode << gtNode;
+ Node lemma = NodeBuilder<3>(OR) << leqNode << geqNode;
eq->d_database->pushSplitWatch(eq);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback