summaryrefslogtreecommitdiff
path: root/src/util/poly_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/poly_util.cpp')
-rw-r--r--src/util/poly_util.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/util/poly_util.cpp b/src/util/poly_util.cpp
index 7cb8baae3..50f42140b 100644
--- a/src/util/poly_util.cpp
+++ b/src/util/poly_util.cpp
@@ -22,7 +22,7 @@
#include "poly_util.h"
-#ifdef CVC4_POLY_IMP
+#ifdef CVC5_POLY_IMP
#include <poly/polyxx.h>
@@ -58,10 +58,10 @@ To cast_by_string(const From& f)
Integer toInteger(const poly::Integer& i)
{
const mpz_class& gi = *poly::detail::cast_to_gmp(&i);
-#ifdef CVC4_GMP_IMP
+#ifdef CVC5_GMP_IMP
return Integer(gi);
#endif
-#ifdef CVC4_CLN_IMP
+#ifdef CVC5_CLN_IMP
if (std::numeric_limits<long>::min() <= gi
&& gi <= std::numeric_limits<long>::max())
{
@@ -76,10 +76,10 @@ Integer toInteger(const poly::Integer& i)
Rational toRational(const poly::Integer& i) { return Rational(toInteger(i)); }
Rational toRational(const poly::Rational& r)
{
-#ifdef CVC4_GMP_IMP
+#ifdef CVC5_GMP_IMP
return Rational(*poly::detail::cast_to_gmp(&r));
#endif
-#ifdef CVC4_CLN_IMP
+#ifdef CVC5_CLN_IMP
return Rational(toInteger(numerator(r)), toInteger(denominator(r)));
#endif
}
@@ -132,10 +132,10 @@ Rational toRationalBelow(const poly::Value& v)
poly::Integer toInteger(const Integer& i)
{
-#ifdef CVC4_GMP_IMP
+#ifdef CVC5_GMP_IMP
return poly::Integer(i.getValue());
#endif
-#ifdef CVC4_CLN_IMP
+#ifdef CVC5_CLN_IMP
if (std::numeric_limits<long>::min() <= i.getValue()
&& i.getValue() <= std::numeric_limits<long>::max())
{
@@ -155,10 +155,10 @@ std::vector<poly::Integer> toInteger(const std::vector<Integer>& vi)
}
poly::Rational toRational(const Rational& r)
{
-#ifdef CVC4_GMP_IMP
+#ifdef CVC5_GMP_IMP
return poly::Rational(r.getValue());
#endif
-#ifdef CVC4_CLN_IMP
+#ifdef CVC5_CLN_IMP
return poly::Rational(toInteger(r.getNumerator()),
toInteger(r.getDenominator()));
#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback