File: IntegerSet64.hh

package info (click to toggle)
topcom 1.1.2%2Bds-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,788 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (367 lines) | stat: -rw-r--r-- 12,706 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
///////////////////////////////////////////////////////////////////////////////
// 
// IntegerSet.hh
//
//    produced: 21/08/97 jr
// last change: 24/01/99 jr
// 
////////////////////////////////////////////////////////////////////////////////
#ifndef INTEGERSET64_HH
#define INTEGERSET64_HH

#include <stdlib.h>
#include <assert.h>

#include <memory>

#include "Global.hh"
#include "SparseIntegerSet.hh"
#include "IntegerSet.hh"

#ifndef STL_CONTAINERS
#include "PlainArray.hh"
#include "Array.hh"
#else
#include <vector>
#endif

namespace topcom {

  class __is64_const_iterator;

  class IntegerSet64 {
  private:
  public:
    friend class CompressedIntegerSet;
  protected:
    block_type          _bitrep;	// bit representation of the set
#ifdef BITCONSTANTS
    static block_type   _bit[64];	// bits as constant masks
    static block_type   _not_bit[64];	// complement bits as constant masks
#endif
#ifndef BIT_LINEAR_SEARCH
    static unsigned char _S_bit_count[256];
    static unsigned char _S_first_one[256];
#endif

  public:
    // constructors:
    IntegerSet64();					      // constructor for empty set
    IntegerSet64(const IntegerSet64&);                        // copy constructor
    IntegerSet64(IntegerSet64&&);                             // move constructor
    IntegerSet64(const SparseIntegerSet&);                    // constructor for SparseIntegerSet
    explicit IntegerSet64(const size_type, const size_type);  // constructor set containing the given range
    explicit IntegerSet64(const size_type elem);              // constructor for one-element set
    IntegerSet64(const size_type len, const size_type* init); // constructor with given integer array
#ifndef STL_CONTAINERS
    IntegerSet64(const Array<parameter_type>&);               // constructor with given Array of integers
    IntegerSet64(const PlainArray<parameter_type>&);          // constructor with given PlainArray of integers
#else
    explicit IntegerSet64(const std::set<parameter_type>&);   // constructor with given std::set of parameter_types
    explicit IntegerSet64(const std::vector<parameter_type>&);// constructor with given std::vector of parameter_types
#endif
    // destructor:
    ~IntegerSet64();				              // destructor
    // keys for containers:
    const size_type   keysize()        const;
    const size_type   key(size_type n) const;

    // accessors:
    inline const size_type no_of_blocks() const;
    inline const size_type memsize() const;
    inline const block_type invariant() const;

    // conversions:
    std::set<size_type>         convert_to_set_of_size_types()         const;
    std::set<parameter_type>    convert_to_set_of_parameter_types()    const;
    std::vector<size_type>      convert_to_vector_of_size_types()      const;
    std::vector<parameter_type> convert_to_vector_of_parameter_types() const;

    // functions:
    const parameter_type card()     const; // cardinality
    const parameter_type max_elem() const; // returns the maximal element (-1 for empty set)
    const size_type      min_elem() const; // returns the minimal element (std::numeric_limits<size_type>::max() for empty set)

    // boolean functions:
    const bool contains(const size_type)         const; // membership
    const bool superset(const IntegerSet64&)     const; // superset relation
    const bool subset(const IntegerSet64&)       const; // subset relation
    const bool disjoint(const IntegerSet64&)     const; // disjoint relation
    const bool lexsmaller(const IntegerSet64&)   const; // true lexicographic order (may be slower than "<")
    const bool colexgreater(const IntegerSet64&) const; // true colexicographicorder (may be slower than ">")

    const bool empty()                           const; // test for empty set

    // iterators:
    friend class __is64_const_iterator;
    typedef __is64_const_iterator const_iterator;
    typedef const_iterator      iterator; // no non-const iterators

    // iterator functions:
    inline const_iterator begin()                    const; // iterator on first element
    inline const_iterator end()                      const; // iterator past last element
    inline const_iterator find(const size_type elem) const; // sets iterator to point to elem

    // boolean operators:
    const bool operator==(const IntegerSet64&) const; // equality
    const bool operator!=(const IntegerSet64&) const; // non-equality
    const bool operator<(const IntegerSet64&)  const; // order on intsets
    const bool operator>(const IntegerSet64&)  const; // reversed order

    const size_type operator[](const size_type) const; // pseudo-random-access
  
    IntegerSet64& clear();		    	        // erase all
    IntegerSet64& fill(const size_type, const size_type); // fill in elements from start to stop
    IntegerSet64& operator=(const IntegerSet64&);         // copy assignment
    IntegerSet64& operator=(IntegerSet64&&);              // move assignment

    // adding and deleting an element:
    IntegerSet64& operator+=(const size_type); // add integer
    IntegerSet64& operator-=(const size_type); // delete integer
    IntegerSet64& operator^=(const size_type); // add if not contained/delete if contained

    // union, difference, and intersection with sets:
    IntegerSet64& operator+=(const IntegerSet64&); // union
    IntegerSet64& operator-=(const IntegerSet64&); // difference
    IntegerSet64& operator*=(const IntegerSet64&); // intersection
    IntegerSet64& operator^=(const IntegerSet64&); // symmetric difference
  
    // other modifiers:
    IntegerSet64& remove_max(const size_type);
    IntegerSet64& remove_min(const size_type);
    IntegerSet64& permute(const Symmetry&);
    
    // the same but a new set is returned:
    IntegerSet64 operator+(const size_type)   const; // add integer
    IntegerSet64 operator-(const size_type)   const; // delete integer
    IntegerSet64 operator+(const IntegerSet64&) const; // union
    IntegerSet64 operator-(const IntegerSet64&) const; // difference
    IntegerSet64 operator*(const IntegerSet64&) const; // intersection
    IntegerSet64 operator^(const IntegerSet64&) const; // symmetric difference

    // other out-of-place functions:
    IntegerSet64 lexmin_subset(const size_type) const;
    IntegerSet64 lexmax_subset(const size_type) const;
    IntegerSet64 permute(const Symmetry&) const;

    // returns the cardinalities
    // 0, 1, or 2 (2 or more) of
    // the intersection of several IntegerSet's:
    const int intersection_card(const IntegerSet64**, 
				const size_type, 
				size_type&) const;
    // specialization returning 0 (no element) or 1 (at least one element):
    const int intersection_nonempty(const IntegerSet64**, 
				    const size_type, 
				    size_type&) const;
    // specialization for only one other IntegerSet:
    const bool intersection_nonempty(const IntegerSet64&) const;

    // iostream:
    std::istream& read(std::istream&);
    std::ostream& write(std::ostream&) const;
    friend std::istream& operator>>(std::istream& ist, IntegerSet64& is) {
      return is.read(ist);
    }
    friend std::ostream& operator<<(std::ostream& ost, const IntegerSet64& is) {
      return is.write(ost);
    }
  };

  class __is64_const_iterator {
    friend class IntegerSet64;
    friend class CompressedIntegerSet;
    friend class __cis_const_iterator;
  private:
    const IntegerSet64*  _container;
    size_type            _current_bit;
  public:
    inline __is64_const_iterator();
    inline __is64_const_iterator(const __is64_const_iterator& iter);
    __is64_const_iterator(const IntegerSet64& s);
    inline __is64_const_iterator(const IntegerSet64& s, int);
  private:
    inline __is64_const_iterator(const IntegerSet64& s, 
				 const size_type current_bit);
  public:
    inline __is64_const_iterator& operator=(const __is64_const_iterator& iter);
    inline const bool           valid() const;
    inline const bool           operator==(const __is64_const_iterator&) const;
    inline const bool           operator!=(const __is64_const_iterator&) const;
    inline const size_type      operator*() const;
    __is64_const_iterator& operator++();
    inline __is64_const_iterator  operator++(int);
  };

  // IntegerSet64 inlines:

  inline const bool IntegerSet64::operator!=(const IntegerSet64& s) const {
    return (!((*this) == s));
  }

  inline const size_type IntegerSet64::no_of_blocks() const {
    return 1;
  }

  inline const size_type IntegerSet64::memsize() const {
    return 1;
  }

  inline const block_type IntegerSet64::invariant() const {
    return _bitrep;
  }

  inline const size_type IntegerSet64::keysize() const {
    //   return _no_of_blocks;
    return 1;
  }

  inline std::set<size_type> IntegerSet64::convert_to_set_of_size_types() const {
    std::set<size_type> result;
    for (const_iterator iter = begin();
	 iter != end();
	 ++iter) {
      result.insert(*iter);
    }
    return result;
  }
  
  inline std::set<parameter_type> IntegerSet64::convert_to_set_of_parameter_types() const {
    std::set<parameter_type> result;
    for (const_iterator iter = begin();
	 iter != end();
	 ++iter) {
      result.insert(*iter);
    }
    return result;
  }

  inline std::vector<size_type> IntegerSet64::convert_to_vector_of_size_types() const {
    std::vector<size_type> result;
    result.reserve(card());
    for (const_iterator iter = begin();
	 iter != end();
	 ++iter) {
      result.push_back(*iter);
    }
    return result;
  }
  
  inline std::vector<parameter_type> IntegerSet64::convert_to_vector_of_parameter_types() const {
    std::vector<parameter_type> result;
    result.reserve(card());
    for (const_iterator iter = begin();
	 iter != end();
	 ++iter) {
      result.push_back(*iter);
    }
    return result;
  }

  
  inline const size_type IntegerSet64::key(size_type n) const {
    return static_cast<size_type>(_bitrep);
  }

  inline const bool IntegerSet64::empty() const {
    return (_bitrep == 0UL);
  }

  inline IntegerSet64::const_iterator IntegerSet64::begin() const {
    return IntegerSet64::const_iterator(*this);
  }

  inline IntegerSet64::const_iterator IntegerSet64::end() const {
    return IntegerSet64::const_iterator(*this,0);
  }

  inline IntegerSet64::const_iterator IntegerSet64::find(const size_type elem) const {
    return IntegerSet64::const_iterator(*this, elem % block_len);
  }

  // IntegerSet64::const_iterator inlines:
  inline __is64_const_iterator::__is64_const_iterator() : 
    _container(0), 
    _current_bit(0) {
  }

  inline __is64_const_iterator::__is64_const_iterator(const __is64_const_iterator& iter) :
    _container(iter._container),
    _current_bit(iter._current_bit) {
  }


  inline __is64_const_iterator::__is64_const_iterator(const IntegerSet64& s, int) :
    _container(&s), 
    _current_bit(block_len) {}

  inline __is64_const_iterator::__is64_const_iterator(const IntegerSet64& s, 
						      const size_type current_bit) :
    _container(&s), 
    _current_bit(current_bit) {
    assert(_container->contains(current_bit));
  }

  inline __is64_const_iterator& __is64_const_iterator::operator=(const __is64_const_iterator& iter) {
    if (this == &iter) {
      return *this;
    }
    _container = iter._container;
    _current_bit = iter._current_bit;
    return *this;
  }

  inline const bool __is64_const_iterator::valid() const {
    return (_current_bit < block_len);
  }

  inline const bool __is64_const_iterator::operator==(const __is64_const_iterator& iter) const {
    return ((_container == iter._container)
	    && (_current_bit == iter._current_bit));
  }

  inline const bool __is64_const_iterator::operator!=(const __is64_const_iterator& iter) const {
    return !((*this) == iter);
  }

  inline const size_type __is64_const_iterator::operator*() const {
#ifdef INDEX_CHECK
    if (!valid()) {
      std::cerr << "__is64_const_iterator::operator*(): invalid __is64_const_iterator."
		<< std::endl;
      exit(1);
    }
#endif
    return (_current_bit);
  }

  inline __is64_const_iterator __is64_const_iterator::operator++(int) {
    __is64_const_iterator tmp = *this;
    ++(*this);
    return tmp;
  }

  // #if defined (STL_CONTAINERS) || defined (STL_SYMMETRIES) || defined (STL_CHIROTOPE) || defined (NEED_STL_HASH)

  // #include <unordered_map>
  // #include <unordered_set>

  // namespace std {
  //   template<>				
  //   struct hash<IntegerSet64> {
  //     std::size_t operator()(const IntegerSet64& is) const {
  //       long res(0);
  //       for (int i = 0; i < is.keysize(); ++i) {
  // 	res ^= is.key(i);
  //       }
  //       return res;
  //     }
  //   };      
  // };

  // #endif

};

#endif
// eof IntegerSet64.hh