mcb LEDA Extension Package  0.8
spvecgf2.h
Go to the documentation of this file.
1 
2 //
3 // This program can be freely used in an academic environment
4 // ONLY for research purposes, subject to the following restrictions:
5 //
6 // 1. The origin of this software must not be misrepresented; you must not
7 // claim that you wrote the original software. If you use this software
8 // an acknowledgment in the product documentation is required.
9 // 2. Altered source versions must be plainly marked as such, and must not be
10 // misrepresented as being the original software.
11 // 3. This notice may not be removed or altered from any source distribution.
12 //
13 // Any other use is strictly prohibited by the author, without an explicit
14 // permission.
15 //
16 // Note that this program uses the LEDA library, which is NOT free. For more
17 // details visit Algorithmic Solutions at http://www.algorithmic-solutions.com/
18 // There is also a free version of LEDA 6.0 or newer.
19 //
20 // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
21 // ! Any commercial use of this software is strictly !
22 // ! prohibited without explicit permission by the !
23 // ! author. !
24 // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
25 //
26 // This software is distributed in the hope that it will be useful,
27 // but WITHOUT ANY WARRANTY; without even the implied warranty of
28 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
29 //
30 // Copyright (C) 2004-2008 - Dimitrios Michail <dimitrios.michail@gmail.com>
31 //
32 
37 #ifndef SPVECGF2_H
38 #define SPVECGF2_H
39 
40 #include <iostream>
41 #include <LEP/mcb/config.h>
42 
43 #ifdef LEDA_GE_V5
44 #include <LEDA/system/basic.h>
45 #include <LEDA/core/list.h>
46 #include <LEDA/core/d_int_set.h>
47 #include <LEDA/system/error.h>
48 #include <LEDA/system/assert.h>
49 #else
50 #include <LEDA/basic.h>
51 #include <LEDA/list.h>
52 #include <LEDA/d_int_set.h>
53 #include <LEDA/error.h>
54 #include <LEDA/assert.h>
55 #endif
56 #include <LEP/mcb/edge_num.h>
57 #include <LEP/mcb/arithm.h>
58 
59 namespace mcb
60 {
61 
62 #if defined(LEDA_NAMESPACE)
63  using leda::list;
64  using leda::list_item;
65  using leda::error_handler;
66  using leda::d_int_set;
67 #endif
68 
69 
112  class spvecgf2
113  {
114  public:
116 
117  spvecgf2();
118 
120  spvecgf2( const spvecgf2 & a );
121 
122  explicit spvecgf2( const int& i );
123 
125  ~spvecgf2( );
127 
128 
130 
134  spvecgf2& operator=( const spvecgf2& i );
135 
137  spvecgf2& operator=( const int& i );
138 
143 #if (__LEDA__ >= 500)
144  spvecgf2& operator=( const d_int_set& i );
145 #else
146  spvecgf2& operator=( d_int_set& i );
147 #endif
148 
152  spvecgf2 operator-( ) const;
153 
159  int operator*( const spvecgf2& a ) const;
160 
166  spvecgf2 operator+( const spvecgf2& a ) const;
167 
172  void add( const spvecgf2& a );
173 
180  spvecgf2 operator%( const spvecgf2& a ) const;
181 
187  d_int_set operator%( const d_int_set& a ) const;
188 
194  spvecgf2 intersect( const spvecgf2& a ) const;
195 
201  spvecgf2& operator+=( const spvecgf2& a );
202 
209  spvecgf2& operator-=( const spvecgf2& a );
210 
217  spvecgf2& operator%=( const spvecgf2& a );
218 
223  void swap( spvecgf2& a );
225 
227 
230  d_int_set to_d_int_set() const;
231 
235  list<int> to_list() const { return l; }
237 
239 
240  void clear( ) { l.clear(); }
241 
245  void print( std::ostream & o ) const;
246 
255  void append( int index );
256 
265  void insert( int index );
266 
271  int pop() { return l.pop(); }
272 
278  void sort() { l.sort(); }
279 
280  // define access stuff, like leda lists
281 
285  bool empty() const { return l.empty(); }
286 
290  int size( ) const { return l.size(); }
292 
294 
300  list_item first( ) const { return l.first(); }
301 
308  list_item last( ) const { return l.last(); }
309 
315  list_item succ( list_item it ) const { return l.succ(it); }
316 
322  list_item pred( list_item it ) const { return l.pred(it); }
323 
329  int index( list_item it ) const { return l.contents(it); }
330 
336  int inf( list_item it ) const { return l.contents(it); }
337 
338  // allow the LEDA forall() macro to work
339  typedef list_item item;
340 
341  item first_item() const { return l.first(); }
342  item last_item() const { return l.last(); }
343  item next_item(item it) const { return it ? l.succ(it) : 0; }
345 
346  private:
347 
348  list < int > l;
349  };
350 
356  std::ostream & operator<<( std::ostream & o, const spvecgf2& v );
357 
363  std::istream & operator>>( std::istream & o, spvecgf2& v );
364 
365 
366 }
367 
368 // helper swap
369 namespace std {
370  template<>
371  void swap<mcb::spvecgf2>( mcb::spvecgf2& a, mcb::spvecgf2& b );
372 }
373 
374 
375 #endif
376 
377 /* ex: set ts=4 sw=4 sts=4 et: */
378 
379 
spvecgf2 intersect(const spvecgf2 &a) const
std::istream & operator>>(std::istream &o, spvecgf2 &v)
Definition of edge numbering.
A sparse vector with elements in GF2.
Definition: spvecgf2.h:112
list_item first() const
Definition: spvecgf2.h:300
bool empty() const
Definition: spvecgf2.h:285
int index(list_item it) const
Definition: spvecgf2.h:329
Definition: spvecgf2.h:369
void swap(spvecgf2 &a)
spvecgf2 operator%(const spvecgf2 &a) const
The main package namespace.
int operator*(const spvecgf2 &a) const
spvecgf2 & operator-=(const spvecgf2 &a)
void append(int index)
void insert(int index)
list_item last() const
Definition: spvecgf2.h:308
Basic arithmetic definitions.
spvecgf2 & operator=(const spvecgf2 &i)
spvecgf2 operator+(const spvecgf2 &a) const
d_int_set to_d_int_set() const
list_item pred(list_item it) const
Definition: spvecgf2.h:322
list_item succ(list_item it) const
Definition: spvecgf2.h:315
spvecgf2 & operator%=(const spvecgf2 &a)
void add(const spvecgf2 &a)
void print(std::ostream &o) const
int pop()
Definition: spvecgf2.h:271
spvecgf2 operator-() const
int size() const
Definition: spvecgf2.h:290
void clear()
Definition: spvecgf2.h:240
int inf(list_item it) const
Definition: spvecgf2.h:336
spvecgf2 & operator+=(const spvecgf2 &a)
void sort()
Definition: spvecgf2.h:278
list< int > to_list() const
Definition: spvecgf2.h:235
std::ostream & operator<<(std::ostream &o, const spvecgf2 &v)