mcb LEDA Extension Package  0.8
edge_num.h
Go to the documentation of this file.
1 //
2 // This program can be freely used in an academic environment
3 // ONLY for research purposes, subject to the following restrictions:
4 //
5 // 1. The origin of this software must not be misrepresented; you must not
6 // claim that you wrote the original software. If you use this software
7 // an acknowledgment in the product documentation is required.
8 // 2. Altered source versions must be plainly marked as such, and must not be
9 // misrepresented as being the original software.
10 // 3. This notice may not be removed or altered from any source distribution.
11 //
12 // Any other use is strictly prohibited by the author, without an explicit
13 // permission.
14 //
15 // Note that this program uses the LEDA library, which is NOT free. For more
16 // details visit Algorithmic Solutions at http://www.algorithmic-solutions.com/
17 // There is also a free version of LEDA 6.0 or newer.
18 //
19 // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
20 // ! Any commercial use of this software is strictly !
21 // ! prohibited without explicit permission by the !
22 // ! author. !
23 // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24 //
25 // This software is distributed in the hope that it will be useful,
26 // but WITHOUT ANY WARRANTY; without even the implied warranty of
27 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 //
29 // Copyright (C) 2004-2008 - Dimitrios Michail <dimitrios.michail@gmail.com>
30 //
31 
36 #ifndef EDGE_NUM_H
37 #define EDGE_NUM_H
38 
39 #include <LEP/mcb/config.h>
40 #include <vector>
41 #ifdef LEDA_GE_V5
42 #include <LEDA/graph/graph.h>
43 #include <LEDA/graph/edge_array.h>
44 #include <LEDA/graph/node_set.h>
45 #include <LEDA/core/b_queue.h>
46 #else
47 #include <LEDA/graph.h>
48 #include <LEDA/edge_array.h>
49 #include <LEDA/node_set.h>
50 #include <LEDA/b_queue.h>
51 #endif
52 
53 namespace mcb {
54 
55 
75  class edge_num
76  {
77 
78  private:
79  // variables:
80  int n;
81  int m;
82  int k;
83  std::vector< leda::edge > index;
84  leda::edge_array<int> rindex;
85  // methods:
86  void create_numbering( const leda::graph& );
87  int construct_tree( const leda::graph&, leda::edge_array<bool>& tree );
88 
89  public:
91  edge_num();
92 
96  explicit edge_num ( const leda::graph& G );
97 
99  edge_num ( const edge_num& );
100 
102  ~edge_num (void);
103 
105  edge_num& operator=( const edge_num& );
106 
111  inline int operator()(leda::edge e) const {
112  return rindex[e];
113  }
114 
119  inline leda::edge operator()(int i) const {
120 #if ! defined(LEDA_CHECKING_OFF)
121  if ( i < 0 || i > m-1 )
122  leda::error_handler(999,"edge_num: illegal number requested");
123 #endif
124  return index[ i ];
125  }
126 
131  bool tree( leda::edge e ) const {
132  return ( rindex[e] >= m - n + k );
133  }
134 
140  int dim_cycle_space() const {
141  return m - n + k;
142  }
143 
148  return k;
149  }
150  };
151 
152 
153 } // end namespace mcb
154 
155 #endif
156 
157 /* ex: set ts=4 sw=4 sts=4 et: */
158 
159 
int operator()(leda::edge e) const
Definition: edge_num.h:111
leda::edge operator()(int i) const
Definition: edge_num.h:119
An edge numbering class.
Definition: edge_num.h:75
The main package namespace.
bool tree(leda::edge e) const
Definition: edge_num.h:131
int num_weak_connected_comp() const
Definition: edge_num.h:147
int dim_cycle_space() const
Definition: edge_num.h:140
edge_num & operator=(const edge_num &)