summaryrefslogtreecommitdiff
path: root/src/util/integer.i
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/integer.i')
-rw-r--r--src/util/integer.i33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/util/integer.i b/src/util/integer.i
deleted file mode 100644
index c8d2f7bdf..000000000
--- a/src/util/integer.i
+++ /dev/null
@@ -1,33 +0,0 @@
-%{
-#include "util/integer.h"
-%}
-
-%ignore CVC4::Integer::Integer(int);
-%ignore CVC4::Integer::Integer(unsigned int);
-%ignore CVC4::Integer::Integer(const std::string&);
-%ignore CVC4::Integer::Integer(const std::string&, unsigned int);
-
-%rename(assign) CVC4::Integer::operator=(const Integer&);
-%rename(equals) CVC4::Integer::operator==(const Integer&) const;
-%ignore CVC4::Integer::operator!=(const Integer&) const;
-%rename(plus) CVC4::Integer::operator+(const Integer&) const;
-%rename(minus) CVC4::Integer::operator-() const;
-%rename(minus) CVC4::Integer::operator-(const Integer&) const;
-%rename(times) CVC4::Integer::operator*(const Integer&) const;
-%rename(dividedBy) CVC4::Integer::operator/(const Integer&) const;
-%rename(modulo) CVC4::Integer::operator%(const Integer&) const;
-%rename(plusAssign) CVC4::Integer::operator+=(const Integer&);
-%rename(minusAssign) CVC4::Integer::operator-=(const Integer&);
-%rename(timesAssign) CVC4::Integer::operator*=(const Integer&);
-%rename(dividedByAssign) CVC4::Integer::operator/=(const Integer&);
-%rename(moduloAssign) CVC4::Integer::operator%=(const Integer&);
-%rename(less) CVC4::Integer::operator<(const Integer&) const;
-%rename(lessEqual) CVC4::Integer::operator<=(const Integer&) const;
-%rename(greater) CVC4::Integer::operator>(const Integer&) const;
-%rename(greaterEqual) CVC4::Integer::operator>=(const Integer&) const;
-
-%rename(apply) CVC4::IntegerHashFunction::operator()(const CVC4::Integer&) const;
-
-%ignore CVC4::operator<<(std::ostream&, const Integer&);
-
-%include "util/integer.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback