mcb LEDA Extension Package  0.8
spvecfp.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 SPVECFP_H
38 #define SPVECFP_H
39 
40 #include <LEP/mcb/config.h>
41 #include <iostream>
42 
43 #ifdef LEDA_GE_V5
44 #include <LEDA/core/array.h>
45 #include <LEDA/core/list.h>
46 #include <LEDA/core/tuple.h>
47 #include <LEDA/system/error.h>
48 #include <LEDA/system/assert.h>
49 #else
50 #include <LEDA/array.h>
51 #include <LEDA/list.h>
52 #include <LEDA/tuple.h>
53 #include <LEDA/error.h>
54 #include <LEDA/assert.h>
55 #endif
56 
57 #include <LEP/mcb/edge_num.h>
58 #include <LEP/mcb/arithm.h>
59 
60 namespace mcb {
61 
62 #if defined(LEDA_NAMESPACE)
63  using leda::list;
64  using leda::list_item;
65  using leda::error_handler;
66  using leda::two_tuple;
67  using leda::three_tuple;
68  using leda::array;
69 #endif
70 
71 
87  class spvecfp {
88 
89  public:
90 
92  spvecfp();
96  spvecfp( const ptype& p );
97 
99  spvecfp( const spvecfp& a );
100 
102  ~spvecfp();
103 
107  void reset( const ptype& p );
108 
109  // assign a vector to the current vector
110  // cast between types, retain the current's vector type
111  spvecfp& operator=( const spvecfp& i );
112 
113  // assign current vector to e_i
114  spvecfp& operator=( const indextype& i );
115 
119  spvecfp operator-() const;
120 
125  ptype operator*( const spvecfp& a ) const;
126 
131  spvecfp operator+( const spvecfp& a ) const;
132 
137  spvecfp operator*( const ptype& a );
138 
143  spvecfp& operator+=( const spvecfp& a );
144 
149  spvecfp& operator-=( const spvecfp& a );
150 
154  void print( std::ostream& o ) const;
155 
165  void append( indextype index, const ptype& value );
166 
171  void sort();
172 
173  // define access stuff, like leda lists
174 
178  bool empty() const;
179 
181  void clear();
182 
186  indextype size() const;
187 
191  ptype pvalue() const;
192 
197  list_item first() const;
198 
203  list_item last() const;
204 
209  list_item succ( list_item it ) const;
210 
215  list_item pred( list_item it ) const;
216 
220  indextype index( list_item it ) const;
221 
225  ptype inf( list_item it ) const;
226 
227  private:
228 
229  typedef two_tuple<indextype,ptype> entry;
230  // list of tuples (tuple = < index, value >)
231  list< entry > l;
232  ptype p;
233 
234  // compare two entries of a spvecfp
235  static inline int compare( const entry& a, const entry& b ) {
236  return leda::compare( a.first(), b.first() );
237  }
238  };
239 
245  std::ostream& operator<<( std::ostream& o, const spvecfp& v );
246 
247 
248 } // end of mcb namespace
249 
250 #endif // SPVECFP_H
251 
void reset(const ptype &p)
void print(std::ostream &o) const
Definition of edge numbering.
spvecfp & operator+=(const spvecfp &a)
list_item succ(list_item it) const
spvecfp & operator-=(const spvecfp &a)
list_item last() const
The main package namespace.
int indextype
Definition: arithm.h:54
A sparse vector with elements in .
Definition: spvecfp.h:87
Basic arithmetic definitions.
spvecfp operator-() const
indextype index(list_item it) const
list_item pred(list_item it) const
indextype size() const
leda::integer ptype
Definition: arithm.h:58
list_item first() const
ptype inf(list_item it) const
bool empty() const
void append(indextype index, const ptype &value)
ptype operator*(const spvecfp &a) const
spvecfp operator+(const spvecfp &a) const
ptype pvalue() const
std::ostream & operator<<(std::ostream &o, const spvecgf2 &v)