IndexSet.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_INDEXSET_H
13 #define HELIB_INDEXSET_H
14 
19 #include <helib/NumbTh.h>
20 
21 namespace helib {
22 
30 class IndexSet
31 {
32 
33  std::vector<bool> rep;
34  // NOTE: modern versions of C++ are supposed
35  // to implement this efficiently as a "specialized template class".
36  // Older versions of C++ define the equivalent class bit_std::vector.
37 
38  long _first, _last, _card;
39 
40  // Invariant: if _card == 0, then _first = 0, _last = -1;
41  // otherwise, _first (resp. _last) is the lowest (resp. highest)
42  // index in the set.
43  // In any case, the std::vector rep always defines the characteristic
44  // function of the set.
45 
46  // private helper function
47  void intervalConstructor(long low, long high);
48 
49 public:
50  /*** constructors ***/
51 
52  // @brief No-argument constructor, creates empty set
53  IndexSet() : _first(0), _last(-1), _card(0) {}
54 
55  // @brief Constructs an interval, low to high
56  IndexSet(long low, long high) { intervalConstructor(low, high); }
57 
58  // @brief Constructs a singleton set
59  explicit IndexSet(long j) { intervalConstructor(j, j); }
60 
61  // copy constructor: use the built-in copy constructor
62 
63  /*** assignment ***/
64 
65  // assignment: use the built-in assignment operator
66 
68  long first() const { return _first; }
69 
71  long last() const { return _last; }
72 
74  long next(long j) const;
75 
76  // @brief Returns the previous element before j, if any; otherwise j-1
77  long prev(long j) const;
78 
80  long card() const { return _card; }
81 
83  bool contains(long j) const;
84 
86  bool contains(const IndexSet& s) const;
87 
89  bool disjointFrom(const IndexSet& s) const;
90 
91  /*** comparison ***/
92 
93  bool operator==(const IndexSet& s) const;
94 
95  bool operator!=(const IndexSet& s) const { return !(*this == s); }
96 
97  /*** update methods ***/
98 
100  void clear();
101 
103  void insert(long j);
104 
106  void remove(long j);
107 
109  void insert(const IndexSet& s);
110 
112  void remove(const IndexSet& s);
113 
115  void retain(const IndexSet& s);
116 
118  static const IndexSet& emptySet();
119 
121  bool isInterval() const { return (_card == (1 + _last - _first)); }
122 
123  /*** raw IO ***/
124  void read(std::istream& str);
125  void write(std::ostream& str) const;
126 
127  /*** code to allow one to write "for (long i: set)" ***/
128 
129  class iterator
130  {
131  friend class IndexSet;
132 
133  public:
134  long operator*() const { return i_; }
136  {
137  i_ = s_.next(i_);
138  return *this;
139  }
140 
141  bool operator==(const iterator& other) const
142  {
143  return &s_ == &other.s_ && i_ == other.i_;
144  }
145 
146  bool operator!=(const iterator& other) const { return !(*this == other); }
147 
148  protected:
149  iterator(const IndexSet& s, long i) : s_(s), i_(i) {}
150 
151  private:
152  const IndexSet& s_;
153  long i_;
154  };
155 
156  iterator begin() const { return iterator(*this, this->first()); }
157  iterator end() const { return iterator(*this, this->last() + 1); }
158 };
159 
160 // some high-level convenience methods...not very efficient...
161 // not sure if we really need these
162 
164 IndexSet operator|(const IndexSet& s, const IndexSet& t);
165 
167 IndexSet operator&(const IndexSet& s, const IndexSet& t);
168 
170 IndexSet operator^(const IndexSet& s, const IndexSet& t);
171 
173 IndexSet operator/(const IndexSet& s, const IndexSet& t);
174 
175 // I/O operator
176 std::ostream& operator<<(std::ostream& str, const IndexSet& set);
177 std::istream& operator>>(std::istream& str, IndexSet& set);
178 
180 long card(const IndexSet& s);
181 
182 inline bool empty(const IndexSet& s) { return s.card() == 0; }
183 
185 bool operator<=(const IndexSet& s1, const IndexSet& s2);
186 
188 bool operator<(const IndexSet& s1, const IndexSet& s2);
189 
191 bool operator>=(const IndexSet& s1, const IndexSet& s2);
192 
194 bool operator>(const IndexSet& s1, const IndexSet& s2);
195 
197 inline bool disjoint(const IndexSet& s1, const IndexSet& s2)
198 {
199  return s1.disjointFrom(s2);
200 }
201 
202 } // namespace helib
203 
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