12 #ifndef HELIB_INDEXSET_H
13 #define HELIB_INDEXSET_H
19 #include <helib/NumbTh.h>
33 std::vector<bool> rep;
38 long _first, _last, _card;
47 void intervalConstructor(
long low,
long high);
56 IndexSet(
long low,
long high) { intervalConstructor(low, high); }
59 explicit IndexSet(
long j) { intervalConstructor(j, j); }
68 long first()
const {
return _first; }
71 long last()
const {
return _last; }
74 long next(
long j)
const;
77 long prev(
long j)
const;
80 long card()
const {
return _card; }
121 bool isInterval()
const {
return (_card == (1 + _last - _first)); }
124 void read(std::istream& str);
125 void write(std::ostream& str)
const;
143 return &s_ == &other.s_ && i_ == other.i_;
164 IndexSet
operator|(
const IndexSet& s,
const IndexSet& t);
167 IndexSet
operator&(
const IndexSet& s,
const IndexSet& t);
170 IndexSet
operator^(
const IndexSet& s,
const IndexSet& t);
173 IndexSet
operator/(
const IndexSet& s,
const IndexSet& t);
176 std::ostream&
operator<<(std::ostream& str,
const IndexSet& set);
177 std::istream&
operator>>(std::istream& str, IndexSet& set);
180 long card(
const IndexSet& s);
185 bool operator<=(
const IndexSet& s1,
const IndexSet& s2);
188 bool operator<(
const IndexSet& s1,
const IndexSet& s2);
191 bool operator>=(
const IndexSet& s1,
const IndexSet& s2);
194 bool operator>(
const IndexSet& s1,
const IndexSet& s2);
204 #endif // ifndef HELIB_INDEXSET_H
iterator end() const
Definition: IndexSet.h:157
IndexSet operator|(const IndexSet &s, const IndexSet &t)
union
Definition: IndexSet.cpp:232
bool operator<(const IndexSet &s1, const IndexSet &s2)
Is s1 strict subset of s2.
Definition: IndexSet.cpp:272
iterator begin() const
Definition: IndexSet.h:156
bool operator==(const IndexSet &s) const
Definition: IndexSet.cpp:103
bool empty(const IndexSet &s)
Definition: IndexSet.h:182
bool contains(long j) const
Returns true iff the set contains j.
Definition: IndexSet.cpp:76
bool operator==(const iterator &other) const
Definition: IndexSet.h:141
long last() const
Returns the last element, -1 if the set is empty.
Definition: IndexSet.h:71
IndexSet operator&(const IndexSet &s, const IndexSet &t)
intersection
Definition: IndexSet.cpp:240
long card() const
The cardinality of the set.
Definition: IndexSet.h:80
bool operator>(const IndexSet &s1, const IndexSet &s2)
Is s2 strict subset of s1.
Definition: IndexSet.cpp:282
IndexSet operator/(const IndexSet &s, const IndexSet &t)
set minus
Definition: IndexSet.cpp:256
bool isInterval() const
Is this set a contiguous interval?
Definition: IndexSet.h:121
bool disjointFrom(const IndexSet &s) const
Returns true iff the set is disjoint from s.
Definition: IndexSet.cpp:91
IndexSet(long low, long high)
Definition: IndexSet.h:56
long card(const IndexSet &s)
Functional cardinality.
Definition: IndexSet.cpp:264
bool operator>=(const IndexSet &s1, const IndexSet &s2)
Is s2 subset or equal to s2.
Definition: IndexSet.cpp:277
IndexSet()
Definition: IndexSet.h:53
A dynamic set of non-negative integers.
Definition: IndexSet.h:31
void insert(long j)
Add j to the set.
Definition: IndexSet.cpp:128
void read(std::istream &str)
Definition: IndexSet.cpp:327
IndexSet operator^(const IndexSet &s, const IndexSet &t)
exclusive-or
Definition: IndexSet.cpp:248
Definition: IndexSet.h:130
iterator(const IndexSet &s, long i)
Definition: IndexSet.h:149
bool operator<=(const IndexSet &s1, const IndexSet &s2)
Is s1 subset or equal to s2.
Definition: IndexSet.cpp:267
bool disjoint(const IndexSet &s1, const IndexSet &s2)
Functional disjoint.
Definition: IndexSet.h:197
long next(long j) const
Returns the next element after j, if any; otherwise j+1.
Definition: IndexSet.cpp:48
static const IndexSet & emptySet()
Read-only access to an empty set.
Definition: IndexSet.cpp:18
Definition: apiAttributes.h:21
void clear()
Set to the empty set.
Definition: IndexSet.cpp:120
long first() const
Returns the first element, 0 if the set is empty.
Definition: IndexSet.h:68
void retain(const IndexSet &s)
Retains only those elements that are also in s (intersection)
Definition: IndexSet.cpp:214
iterator & operator++()
Definition: IndexSet.h:135
long prev(long j) const
Definition: IndexSet.cpp:62
void remove(long j)
Remove j from the set.
Definition: IndexSet.cpp:154
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
void write(std::ostream &str) const
Definition: IndexSet.cpp:316
long operator*() const
Definition: IndexSet.h:134
IndexSet(long j)
Definition: IndexSet.h:59
std::istream & operator>>(std::istream &s, CtxtPart &p)
Definition: Ctxt.cpp:2206
bool operator!=(const iterator &other) const
Definition: IndexSet.h:146
bool operator!=(const IndexSet &s) const
Definition: IndexSet.h:95