summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-25 18:57:48 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-25 18:57:48 +0000
commit94b685e149119bbe75266481f6de3a0915e7c10a (patch)
treeaddbbdd36ca34f65c7d3d092c0f1fc5d400c6dac /src
parent89bcd4deee07a2c61d30a9dfca64e58e8c2d701b (diff)
fix some Mac issues
Diffstat (limited to 'src')
-rwxr-xr-xsrc/options/mkoptions8
-rw-r--r--src/util/integer.h.in13
-rw-r--r--src/util/integer_cln_imp.h6
-rw-r--r--src/util/integer_gmp_imp.h6
-rw-r--r--src/util/rational.h.in9
-rw-r--r--src/util/rational_cln_imp.h14
-rw-r--r--src/util/rational_gmp_imp.h18
7 files changed, 65 insertions, 9 deletions
diff --git a/src/options/mkoptions b/src/options/mkoptions
index 69d7643c7..8947aba42 100755
--- a/src/options/mkoptions
+++ b/src/options/mkoptions
@@ -1153,6 +1153,7 @@ function output_module {
module_global_definitions \
template \
; do
+ echo -n .
eval text="\${text//\\\$\\{$var\\}/\${$var}}"
done
error="$(echo "$text" | grep '.*\${[^}]*}.*' | head -n 1)"
@@ -1205,10 +1206,12 @@ EOF
) >"$output.tmp"
+ echo -n .
if diff -q "$output" "$output.tmp" &>/dev/null; then
rm -f "$output.tmp"
else
mv -f "$output.tmp" "$output"
+ echo
echo "regenerated $output"
fi
}
@@ -1308,6 +1311,7 @@ for var in \
common_manpage_smt_documentation \
remaining_manpage_smt_documentation \
; do
+ echo -n .
eval text="\${text//\\\$\\{$var\\}/\${$var}}"
done
error="$(echo "$text" | grep '.*\${[^}]*}.*' | head -n 1)"
@@ -1361,8 +1365,10 @@ echo "$text"
) >"$output.tmp"
-diff -q "$output" "$output.tmp" &>/dev/null || (mv -f "$output.tmp" "$output" && echo "regenerated $output")
+echo -n .
+diff -q "$output" "$output.tmp" &>/dev/null || (mv -f "$output.tmp" "$output" && echo && echo "regenerated $output")
rm -f "$output.tmp"
done
+echo
diff --git a/src/util/integer.h.in b/src/util/integer.h.in
index 1fdaf0215..1f0174083 100644
--- a/src/util/integer.h.in
+++ b/src/util/integer.h.in
@@ -5,18 +5,23 @@
** Major contributors: none
** Minor contributors (to current version): dejan, cconway, mdeters
** This file is part of the CVC4 prototype.
- ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
+ ** Copyright (c) 2009-2012 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
** New York University
** See the file COPYING in the top-level source directory for licensing
** information.\endverbatim
**
- ** \brief A multiprecision integer constant
+ ** \brief A multi-precision integer constant
**
- ** A multiprecision integer constant.
+ ** A multi-precision integer constant.
**/
-// this is used to avoid a public header dependence on cvc4autoconfig.h
+// these gestures are used to avoid a public header dependence on cvc4autoconfig.h
+
+#if @CVC4_NEED_INT64_T_OVERLOADS@
+# define CVC4_NEED_INT64_T_OVERLOADS
+#endif
+
#if /* use CLN */ @CVC4_USE_CLN_IMP@
# define CVC4_CLN_IMP
#endif /* @CVC4_USE_CLN_IMP@ */
diff --git a/src/util/integer_cln_imp.h b/src/util/integer_cln_imp.h
index 8f7daf4f5..7fd6a2694 100644
--- a/src/util/integer_cln_imp.h
+++ b/src/util/integer_cln_imp.h
@@ -120,8 +120,12 @@ public:
Integer( signed long int z) : d_value(z) {}
Integer(unsigned long int z) : d_value(z) {}
- ~Integer() {}
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Integer( int64_t z) : d_value(static_cast<long>(z)) {}
+ Integer(uint64_t z) : d_value(static_cast<unsigned long>(z)) {}
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+ ~Integer() {}
Integer& operator=(const Integer& x){
if(this == &x) return *this;
diff --git a/src/util/integer_gmp_imp.h b/src/util/integer_gmp_imp.h
index c553baff9..5b6468a9e 100644
--- a/src/util/integer_gmp_imp.h
+++ b/src/util/integer_gmp_imp.h
@@ -72,8 +72,12 @@ public:
Integer( signed long int z) : d_value(z) {}
Integer(unsigned long int z) : d_value(z) {}
- ~Integer() {}
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Integer( int64_t z) : d_value(static_cast<long>(z)) {}
+ Integer(uint64_t z) : d_value(static_cast<unsigned long>(z)) {}
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+ ~Integer() {}
Integer& operator=(const Integer& x){
if(this == &x) return *this;
diff --git a/src/util/rational.h.in b/src/util/rational.h.in
index f97559377..c8e42a253 100644
--- a/src/util/rational.h.in
+++ b/src/util/rational.h.in
@@ -5,7 +5,7 @@
** Major contributors: none
** Minor contributors (to current version): dejan, mdeters, cconway
** This file is part of the CVC4 prototype.
- ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
+ ** Copyright (c) 2009-2012 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
** New York University
** See the file COPYING in the top-level source directory for licensing
@@ -16,7 +16,12 @@
** A multi-precision rational constant.
**/
-// this is used to avoid a public header dependence on cvc4autoconfig.h
+// these gestures are used to avoid a public header dependence on cvc4autoconfig.h
+
+#if @CVC4_NEED_INT64_T_OVERLOADS@
+# define CVC4_NEED_INT64_T_OVERLOADS
+#endif
+
#if /* use CLN */ @CVC4_USE_CLN_IMP@
# define CVC4_CLN_IMP
#endif /* @CVC4_USE_CLN_IMP@ */
diff --git a/src/util/rational_cln_imp.h b/src/util/rational_cln_imp.h
index 4247a1e63..182e813cd 100644
--- a/src/util/rational_cln_imp.h
+++ b/src/util/rational_cln_imp.h
@@ -131,6 +131,11 @@ public:
Rational(signed long int n) : d_value(n) { }
Rational(unsigned long int n) : d_value(n) { }
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Rational(int64_t n) : d_value(static_cast<long>(n)) { }
+ Rational(uint64_t n) : d_value(static_cast<unsigned long>(n)) { }
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+
/**
* Constructs a canonical Rational from a numerator and denominator.
*/
@@ -147,6 +152,15 @@ public:
d_value /= d;
}
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Rational(int64_t n, int64_t d) : d_value(static_cast<long>(n)) {
+ d_value /= static_cast<long>(d);
+ }
+ Rational(uint64_t n, uint64_t d) : d_value(static_cast<unsigned long>(n)) {
+ d_value /= static_cast<unsigned long>(d);
+ }
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+
Rational(const Integer& n, const Integer& d) :
d_value(n.get_cl_I())
{
diff --git a/src/util/rational_gmp_imp.h b/src/util/rational_gmp_imp.h
index 0c8a46f33..b86dc32f2 100644
--- a/src/util/rational_gmp_imp.h
+++ b/src/util/rational_gmp_imp.h
@@ -111,6 +111,15 @@ public:
d_value.canonicalize();
}
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Rational(int64_t n) : d_value(static_cast<long>(n), 1) {
+ d_value.canonicalize();
+ }
+ Rational(uint64_t n) : d_value(static_cast<unsigned long>(n), 1) {
+ d_value.canonicalize();
+ }
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+
/**
* Constructs a canonical Rational from a numerator and denominator.
*/
@@ -127,6 +136,15 @@ public:
d_value.canonicalize();
}
+#ifdef CVC4_NEED_INT64_T_OVERLOADS
+ Rational(int64_t n, int64_t d) : d_value(static_cast<long>(n), static_cast<long>(d)) {
+ d_value.canonicalize();
+ }
+ Rational(uint64_t n, uint64_t d) : d_value(static_cast<unsigned long>(n), static_cast<unsigned long>(d)) {
+ d_value.canonicalize();
+ }
+#endif /* CVC4_NEED_INT64_T_OVERLOADS */
+
Rational(const Integer& n, const Integer& d) :
d_value(n.get_mpz(), d.get_mpz())
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback