summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/poly_conversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/nl/poly_conversion.cpp')
-rw-r--r--src/theory/arith/nl/poly_conversion.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/theory/arith/nl/poly_conversion.cpp b/src/theory/arith/nl/poly_conversion.cpp
index 8345fc5a1..e3bf4712d 100644
--- a/src/theory/arith/nl/poly_conversion.cpp
+++ b/src/theory/arith/nl/poly_conversion.cpp
@@ -360,17 +360,18 @@ Node excluding_interval_to_lemma(const Node& variable,
if (is_algebraic_number(lv))
{
return nm->mkNode(
- Kind::AND,
+ Kind::OR,
nm->mkNode(
- Kind::GT, variable, nm->mkConst(poly_utils::toRationalBelow(lv))),
- nm->mkNode(Kind::LT,
+ Kind::LT, variable, nm->mkConst(poly_utils::toRationalBelow(lv))),
+ nm->mkNode(Kind::GT,
variable,
nm->mkConst(poly_utils::toRationalAbove(lv))));
}
else
{
- return nm->mkNode(
- Kind::EQUAL, variable, nm->mkConst(poly_utils::toRationalBelow(lv)));
+ return nm->mkNode(Kind::DISTINCT,
+ variable,
+ nm->mkConst(poly_utils::toRationalBelow(lv)));
}
}
if (li)
@@ -384,7 +385,7 @@ Node excluding_interval_to_lemma(const Node& variable,
Kind::LT, variable, nm->mkConst(poly_utils::toRationalBelow(lv)));
}
return nm->mkNode(
- Kind::AND,
+ Kind::OR,
nm->mkNode(
Kind::GT, variable, nm->mkConst(poly_utils::toRationalAbove(uv))),
nm->mkNode(
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback