summaryrefslogtreecommitdiff
path: root/src/util/subrange_bound.i
blob: c619b5e3106b673af420403052e1ca2ab7ed0cde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%{
#include "util/subrange_bound.h"
%}

%rename(equals) CVC4::SubrangeBound::operator==(const SubrangeBound&) const;
%ignore CVC4::SubrangeBound::operator!=(const SubrangeBound&) const;
%rename(less) CVC4::SubrangeBound::operator<(const SubrangeBound&) const;
%rename(lessEqual) CVC4::SubrangeBound::operator<=(const SubrangeBound&) const;
%rename(greater) CVC4::SubrangeBound::operator>(const SubrangeBound&) const;
%rename(greaterEqual) CVC4::SubrangeBound::operator>=(const SubrangeBound&) const;

%rename(equals) CVC4::SubrangeBounds::operator==(const SubrangeBounds&) const;
%ignore CVC4::SubrangeBounds::operator!=(const SubrangeBounds&) const;
%rename(less) CVC4::SubrangeBounds::operator<(const SubrangeBounds&) const;
%rename(lessEqual) CVC4::SubrangeBounds::operator<=(const SubrangeBounds&) const;
%rename(greater) CVC4::SubrangeBounds::operator>(const SubrangeBounds&) const;
%rename(greaterEqual) CVC4::SubrangeBounds::operator>=(const SubrangeBounds&) const;

%ignore CVC4::operator<<(std::ostream&, const SubrangeBound&);

%include "util/subrange_bound.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback