1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2009 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
/*! |
20 | 20 |
|
21 | 21 |
\page coding_style LEMON Coding Style |
22 | 22 |
|
23 | 23 |
\section naming_conv Naming Conventions |
24 | 24 |
|
25 | 25 |
In order to make development easier we have made some conventions |
26 | 26 |
according to coding style. These include names of types, classes, |
27 | 27 |
functions, variables, constants and exceptions. If these conventions |
28 | 28 |
are met in one's code then it is easier to read and maintain |
29 | 29 |
it. Please comply with these conventions if you want to contribute |
30 | 30 |
developing LEMON library. |
31 | 31 |
|
32 | 32 |
\note When the coding style requires the capitalization of an abbreviation, |
33 | 33 |
only the first letter should be upper case. |
34 | 34 |
|
35 | 35 |
\code |
36 | 36 |
XmlReader |
37 | 37 |
\endcode |
38 | 38 |
|
39 | 39 |
|
40 | 40 |
\warning In some cases we diverge from these rules. |
41 | 41 |
This is primary done because STL uses different naming convention and |
42 | 42 |
in certain cases |
43 | 43 |
it is beneficial to provide STL compatible interface. |
44 | 44 |
|
45 | 45 |
\subsection cs-files File Names |
46 | 46 |
|
47 | 47 |
The header file names should look like the following. |
48 | 48 |
|
49 | 49 |
\code |
50 | 50 |
header_file.h |
51 | 51 |
\endcode |
52 | 52 |
|
53 | 53 |
Note that all standard LEMON headers are located in the \c lemon subdirectory, |
54 | 54 |
so you should include them from C++ source like this: |
55 | 55 |
|
56 | 56 |
\code |
57 | 57 |
#include <lemon/header_file.h> |
58 | 58 |
\endcode |
59 | 59 |
|
60 | 60 |
The source code files use the same style and they have '.cc' extension. |
61 | 61 |
|
62 | 62 |
\code |
63 | 63 |
source_code.cc |
64 | 64 |
\endcode |
65 | 65 |
|
66 | 66 |
\subsection cs-class Classes and other types |
67 | 67 |
|
68 | 68 |
The name of a class or any type should look like the following. |
69 | 69 |
|
70 | 70 |
\code |
71 | 71 |
AllWordsCapitalizedWithoutUnderscores |
72 | 72 |
\endcode |
73 | 73 |
|
74 | 74 |
\subsection cs-func Methods and other functions |
75 | 75 |
|
76 | 76 |
The name of a function should look like the following. |
77 | 77 |
|
78 | 78 |
\code |
79 | 79 |
firstWordLowerCaseRestCapitalizedWithoutUnderscores |
80 | 80 |
\endcode |
81 | 81 |
|
82 | 82 |
\subsection cs-funcs Constants, Macros |
83 | 83 |
|
84 | 84 |
The names of constants and macros should look like the following. |
85 | 85 |
|
86 | 86 |
\code |
87 | 87 |
ALL_UPPER_CASE_WITH_UNDERSCORES |
88 | 88 |
\endcode |
89 | 89 |
|
90 | 90 |
\subsection cs-loc-var Class and instance member variables, auto variables |
91 | 91 |
|
92 | 92 |
The names of class and instance member variables and auto variables |
93 | 93 |
(=variables used locally in methods) should look like the following. |
94 | 94 |
|
95 | 95 |
\code |
96 | 96 |
all_lower_case_with_underscores |
97 | 97 |
\endcode |
98 | 98 |
|
99 | 99 |
\subsection pri-loc-var Private member variables |
100 | 100 |
|
101 |
Private member variables should start with underscore |
|
101 |
Private member variables should start with underscore. |
|
102 | 102 |
|
103 | 103 |
\code |
104 |
|
|
104 |
_start_with_underscore |
|
105 | 105 |
\endcode |
106 | 106 |
|
107 | 107 |
\subsection cs-excep Exceptions |
108 | 108 |
|
109 | 109 |
When writing exceptions please comply the following naming conventions. |
110 | 110 |
|
111 | 111 |
\code |
112 | 112 |
ClassNameEndsWithException |
113 | 113 |
\endcode |
114 | 114 |
|
115 | 115 |
or |
116 | 116 |
|
117 | 117 |
\code |
118 | 118 |
ClassNameEndsWithError |
119 | 119 |
\endcode |
120 | 120 |
|
121 | 121 |
\section header-template Template Header File |
122 | 122 |
|
123 | 123 |
Each LEMON header file should look like this: |
124 | 124 |
|
125 | 125 |
\include template.h |
126 | 126 |
|
127 | 127 |
*/ |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
namespace lemon { |
20 | 20 |
|
21 | 21 |
/** |
22 | 22 |
@defgroup datas Data Structures |
23 | 23 |
This group contains the several data structures implemented in LEMON. |
24 | 24 |
*/ |
25 | 25 |
|
26 | 26 |
/** |
27 | 27 |
@defgroup graphs Graph Structures |
28 | 28 |
@ingroup datas |
29 | 29 |
\brief Graph structures implemented in LEMON. |
30 | 30 |
|
31 | 31 |
The implementation of combinatorial algorithms heavily relies on |
32 | 32 |
efficient graph implementations. LEMON offers data structures which are |
33 | 33 |
planned to be easily used in an experimental phase of implementation studies, |
34 | 34 |
and thereafter the program code can be made efficient by small modifications. |
35 | 35 |
|
36 | 36 |
The most efficient implementation of diverse applications require the |
37 | 37 |
usage of different physical graph implementations. These differences |
38 | 38 |
appear in the size of graph we require to handle, memory or time usage |
39 | 39 |
limitations or in the set of operations through which the graph can be |
40 | 40 |
accessed. LEMON provides several physical graph structures to meet |
41 | 41 |
the diverging requirements of the possible users. In order to save on |
42 | 42 |
running time or on memory usage, some structures may fail to provide |
43 | 43 |
some graph features like arc/edge or node deletion. |
44 | 44 |
|
45 | 45 |
Alteration of standard containers need a very limited number of |
46 | 46 |
operations, these together satisfy the everyday requirements. |
47 | 47 |
In the case of graph structures, different operations are needed which do |
48 | 48 |
not alter the physical graph, but gives another view. If some nodes or |
49 | 49 |
arcs have to be hidden or the reverse oriented graph have to be used, then |
50 | 50 |
this is the case. It also may happen that in a flow implementation |
51 | 51 |
the residual graph can be accessed by another algorithm, or a node-set |
52 | 52 |
is to be shrunk for another algorithm. |
53 | 53 |
LEMON also provides a variety of graphs for these requirements called |
54 | 54 |
\ref graph_adaptors "graph adaptors". Adaptors cannot be used alone but only |
55 | 55 |
in conjunction with other graph representations. |
56 | 56 |
|
57 | 57 |
You are free to use the graph structure that fit your requirements |
58 | 58 |
the best, most graph algorithms and auxiliary data structures can be used |
59 | 59 |
with any graph structure. |
60 | 60 |
|
61 | 61 |
<b>See also:</b> \ref graph_concepts "Graph Structure Concepts". |
62 | 62 |
*/ |
63 | 63 |
|
64 | 64 |
/** |
65 | 65 |
@defgroup graph_adaptors Adaptor Classes for Graphs |
66 | 66 |
@ingroup graphs |
67 | 67 |
\brief Adaptor classes for digraphs and graphs |
68 | 68 |
|
69 | 69 |
This group contains several useful adaptor classes for digraphs and graphs. |
70 | 70 |
|
71 | 71 |
The main parts of LEMON are the different graph structures, generic |
72 | 72 |
graph algorithms, graph concepts, which couple them, and graph |
73 | 73 |
adaptors. While the previous notions are more or less clear, the |
74 | 74 |
latter one needs further explanation. Graph adaptors are graph classes |
75 | 75 |
which serve for considering graph structures in different ways. |
76 | 76 |
|
77 | 77 |
A short example makes this much clearer. Suppose that we have an |
78 | 78 |
instance \c g of a directed graph type, say ListDigraph and an algorithm |
79 | 79 |
\code |
80 | 80 |
template <typename Digraph> |
81 | 81 |
int algorithm(const Digraph&); |
82 | 82 |
\endcode |
83 | 83 |
is needed to run on the reverse oriented graph. It may be expensive |
84 | 84 |
(in time or in memory usage) to copy \c g with the reversed |
85 | 85 |
arcs. In this case, an adaptor class is used, which (according |
86 | 86 |
to LEMON \ref concepts::Digraph "digraph concepts") works as a digraph. |
87 | 87 |
The adaptor uses the original digraph structure and digraph operations when |
88 | 88 |
methods of the reversed oriented graph are called. This means that the adaptor |
89 | 89 |
have minor memory usage, and do not perform sophisticated algorithmic |
90 | 90 |
actions. The purpose of it is to give a tool for the cases when a |
91 | 91 |
graph have to be used in a specific alteration. If this alteration is |
92 | 92 |
obtained by a usual construction like filtering the node or the arc set or |
93 | 93 |
considering a new orientation, then an adaptor is worthwhile to use. |
94 | 94 |
To come back to the reverse oriented graph, in this situation |
95 | 95 |
\code |
96 | 96 |
template<typename Digraph> class ReverseDigraph; |
97 | 97 |
\endcode |
98 | 98 |
template class can be used. The code looks as follows |
99 | 99 |
\code |
100 | 100 |
ListDigraph g; |
101 | 101 |
ReverseDigraph<ListDigraph> rg(g); |
102 | 102 |
int result = algorithm(rg); |
103 | 103 |
\endcode |
104 | 104 |
During running the algorithm, the original digraph \c g is untouched. |
105 | 105 |
This techniques give rise to an elegant code, and based on stable |
106 | 106 |
graph adaptors, complex algorithms can be implemented easily. |
107 | 107 |
|
108 | 108 |
In flow, circulation and matching problems, the residual |
109 | 109 |
graph is of particular importance. Combining an adaptor implementing |
110 | 110 |
this with shortest path algorithms or minimum mean cycle algorithms, |
111 | 111 |
a range of weighted and cardinality optimization algorithms can be |
112 | 112 |
obtained. For other examples, the interested user is referred to the |
113 | 113 |
detailed documentation of particular adaptors. |
114 | 114 |
|
115 | 115 |
The behavior of graph adaptors can be very different. Some of them keep |
116 | 116 |
capabilities of the original graph while in other cases this would be |
117 | 117 |
meaningless. This means that the concepts that they meet depend |
118 | 118 |
on the graph adaptor, and the wrapped graph. |
119 | 119 |
For example, if an arc of a reversed digraph is deleted, this is carried |
120 | 120 |
out by deleting the corresponding arc of the original digraph, thus the |
121 | 121 |
adaptor modifies the original digraph. |
122 | 122 |
However in case of a residual digraph, this operation has no sense. |
123 | 123 |
|
124 | 124 |
Let us stand one more example here to simplify your work. |
125 | 125 |
ReverseDigraph has constructor |
126 | 126 |
\code |
127 | 127 |
ReverseDigraph(Digraph& digraph); |
128 | 128 |
\endcode |
129 | 129 |
This means that in a situation, when a <tt>const %ListDigraph&</tt> |
130 | 130 |
reference to a graph is given, then it have to be instantiated with |
131 | 131 |
<tt>Digraph=const %ListDigraph</tt>. |
132 | 132 |
\code |
133 | 133 |
int algorithm1(const ListDigraph& g) { |
134 | 134 |
ReverseDigraph<const ListDigraph> rg(g); |
135 | 135 |
return algorithm2(rg); |
136 | 136 |
} |
137 | 137 |
\endcode |
138 | 138 |
*/ |
139 | 139 |
|
140 | 140 |
/** |
141 | 141 |
@defgroup maps Maps |
142 | 142 |
@ingroup datas |
143 | 143 |
\brief Map structures implemented in LEMON. |
144 | 144 |
|
145 | 145 |
This group contains the map structures implemented in LEMON. |
146 | 146 |
|
147 | 147 |
LEMON provides several special purpose maps and map adaptors that e.g. combine |
148 | 148 |
new maps from existing ones. |
149 | 149 |
|
150 | 150 |
<b>See also:</b> \ref map_concepts "Map Concepts". |
151 | 151 |
*/ |
152 | 152 |
|
153 | 153 |
/** |
154 | 154 |
@defgroup graph_maps Graph Maps |
155 | 155 |
@ingroup maps |
156 | 156 |
\brief Special graph-related maps. |
157 | 157 |
|
158 | 158 |
This group contains maps that are specifically designed to assign |
159 | 159 |
values to the nodes and arcs/edges of graphs. |
160 | 160 |
|
161 | 161 |
If you are looking for the standard graph maps (\c NodeMap, \c ArcMap, |
162 | 162 |
\c EdgeMap), see the \ref graph_concepts "Graph Structure Concepts". |
163 | 163 |
*/ |
164 | 164 |
|
165 | 165 |
/** |
166 | 166 |
\defgroup map_adaptors Map Adaptors |
167 | 167 |
\ingroup maps |
168 | 168 |
\brief Tools to create new maps from existing ones |
169 | 169 |
|
170 | 170 |
This group contains map adaptors that are used to create "implicit" |
171 | 171 |
maps from other maps. |
172 | 172 |
|
173 | 173 |
Most of them are \ref concepts::ReadMap "read-only maps". |
174 | 174 |
They can make arithmetic and logical operations between one or two maps |
175 | 175 |
(negation, shifting, addition, multiplication, logical 'and', 'or', |
176 | 176 |
'not' etc.) or e.g. convert a map to another one of different Value type. |
177 | 177 |
|
178 | 178 |
The typical usage of this classes is passing implicit maps to |
179 | 179 |
algorithms. If a function type algorithm is called then the function |
180 | 180 |
type map adaptors can be used comfortable. For example let's see the |
181 | 181 |
usage of map adaptors with the \c graphToEps() function. |
182 | 182 |
\code |
183 | 183 |
Color nodeColor(int deg) { |
184 | 184 |
if (deg >= 2) { |
185 | 185 |
return Color(0.5, 0.0, 0.5); |
186 | 186 |
} else if (deg == 1) { |
187 | 187 |
return Color(1.0, 0.5, 1.0); |
188 | 188 |
} else { |
189 | 189 |
return Color(0.0, 0.0, 0.0); |
190 | 190 |
} |
191 | 191 |
} |
192 | 192 |
|
193 | 193 |
Digraph::NodeMap<int> degree_map(graph); |
194 | 194 |
|
195 | 195 |
graphToEps(graph, "graph.eps") |
196 | 196 |
.coords(coords).scaleToA4().undirected() |
197 | 197 |
.nodeColors(composeMap(functorToMap(nodeColor), degree_map)) |
198 | 198 |
.run(); |
199 | 199 |
\endcode |
200 | 200 |
The \c functorToMap() function makes an \c int to \c Color map from the |
201 | 201 |
\c nodeColor() function. The \c composeMap() compose the \c degree_map |
202 | 202 |
and the previously created map. The composed map is a proper function to |
203 | 203 |
get the color of each node. |
204 | 204 |
|
205 | 205 |
The usage with class type algorithms is little bit harder. In this |
206 | 206 |
case the function type map adaptors can not be used, because the |
207 | 207 |
function map adaptors give back temporary objects. |
208 | 208 |
\code |
209 | 209 |
Digraph graph; |
210 | 210 |
|
211 | 211 |
typedef Digraph::ArcMap<double> DoubleArcMap; |
212 | 212 |
DoubleArcMap length(graph); |
213 | 213 |
DoubleArcMap speed(graph); |
214 | 214 |
|
215 | 215 |
typedef DivMap<DoubleArcMap, DoubleArcMap> TimeMap; |
216 | 216 |
TimeMap time(length, speed); |
217 | 217 |
|
218 | 218 |
Dijkstra<Digraph, TimeMap> dijkstra(graph, time); |
219 | 219 |
dijkstra.run(source, target); |
220 | 220 |
\endcode |
221 | 221 |
We have a length map and a maximum speed map on the arcs of a digraph. |
222 | 222 |
The minimum time to pass the arc can be calculated as the division of |
223 | 223 |
the two maps which can be done implicitly with the \c DivMap template |
224 | 224 |
class. We use the implicit minimum time map as the length map of the |
225 | 225 |
\c Dijkstra algorithm. |
226 | 226 |
*/ |
227 | 227 |
|
228 | 228 |
/** |
229 | 229 |
@defgroup paths Path Structures |
230 | 230 |
@ingroup datas |
231 | 231 |
\brief %Path structures implemented in LEMON. |
232 | 232 |
|
233 | 233 |
This group contains the path structures implemented in LEMON. |
234 | 234 |
|
235 | 235 |
LEMON provides flexible data structures to work with paths. |
236 | 236 |
All of them have similar interfaces and they can be copied easily with |
237 | 237 |
assignment operators and copy constructors. This makes it easy and |
238 | 238 |
efficient to have e.g. the Dijkstra algorithm to store its result in |
239 | 239 |
any kind of path structure. |
240 | 240 |
|
241 | 241 |
\sa \ref concepts::Path "Path concept" |
242 | 242 |
*/ |
243 | 243 |
|
244 | 244 |
/** |
245 | 245 |
@defgroup heaps Heap Structures |
246 | 246 |
@ingroup datas |
247 | 247 |
\brief %Heap structures implemented in LEMON. |
248 | 248 |
|
249 | 249 |
This group contains the heap structures implemented in LEMON. |
250 | 250 |
|
251 | 251 |
LEMON provides several heap classes. They are efficient implementations |
252 | 252 |
of the abstract data type \e priority \e queue. They store items with |
253 | 253 |
specified values called \e priorities in such a way that finding and |
254 | 254 |
removing the item with minimum priority are efficient. |
255 | 255 |
The basic operations are adding and erasing items, changing the priority |
256 | 256 |
of an item, etc. |
257 | 257 |
|
258 | 258 |
Heaps are crucial in several algorithms, such as Dijkstra and Prim. |
259 | 259 |
The heap implementations have the same interface, thus any of them can be |
260 | 260 |
used easily in such algorithms. |
261 | 261 |
|
262 | 262 |
\sa \ref concepts::Heap "Heap concept" |
263 | 263 |
*/ |
264 | 264 |
|
265 | 265 |
/** |
266 | 266 |
@defgroup auxdat Auxiliary Data Structures |
267 | 267 |
@ingroup datas |
268 | 268 |
\brief Auxiliary data structures implemented in LEMON. |
269 | 269 |
|
270 | 270 |
This group contains some data structures implemented in LEMON in |
271 | 271 |
order to make it easier to implement combinatorial algorithms. |
272 | 272 |
*/ |
273 | 273 |
|
274 | 274 |
/** |
275 | 275 |
@defgroup geomdat Geometric Data Structures |
276 | 276 |
@ingroup auxdat |
277 | 277 |
\brief Geometric data structures implemented in LEMON. |
278 | 278 |
|
279 | 279 |
This group contains geometric data structures implemented in LEMON. |
280 | 280 |
|
281 | 281 |
- \ref lemon::dim2::Point "dim2::Point" implements a two dimensional |
282 | 282 |
vector with the usual operations. |
283 | 283 |
- \ref lemon::dim2::Box "dim2::Box" can be used to determine the |
284 | 284 |
rectangular bounding box of a set of \ref lemon::dim2::Point |
285 | 285 |
"dim2::Point"'s. |
286 | 286 |
*/ |
287 | 287 |
|
288 | 288 |
/** |
289 | 289 |
@defgroup matrices Matrices |
290 | 290 |
@ingroup auxdat |
291 | 291 |
\brief Two dimensional data storages implemented in LEMON. |
292 | 292 |
|
293 | 293 |
This group contains two dimensional data storages implemented in LEMON. |
294 | 294 |
*/ |
295 | 295 |
|
296 | 296 |
/** |
297 | 297 |
@defgroup algs Algorithms |
298 | 298 |
\brief This group contains the several algorithms |
299 | 299 |
implemented in LEMON. |
300 | 300 |
|
301 | 301 |
This group contains the several algorithms |
302 | 302 |
implemented in LEMON. |
303 | 303 |
*/ |
304 | 304 |
|
305 | 305 |
/** |
306 | 306 |
@defgroup search Graph Search |
307 | 307 |
@ingroup algs |
308 | 308 |
\brief Common graph search algorithms. |
309 | 309 |
|
310 | 310 |
This group contains the common graph search algorithms, namely |
311 | 311 |
\e breadth-first \e search (BFS) and \e depth-first \e search (DFS) |
312 | 312 |
\ref clrs01algorithms. |
313 | 313 |
*/ |
314 | 314 |
|
315 | 315 |
/** |
316 | 316 |
@defgroup shortest_path Shortest Path Algorithms |
317 | 317 |
@ingroup algs |
318 | 318 |
\brief Algorithms for finding shortest paths. |
319 | 319 |
|
320 | 320 |
This group contains the algorithms for finding shortest paths in digraphs |
321 | 321 |
\ref clrs01algorithms. |
322 | 322 |
|
323 | 323 |
- \ref Dijkstra algorithm for finding shortest paths from a source node |
324 | 324 |
when all arc lengths are non-negative. |
325 | 325 |
- \ref BellmanFord "Bellman-Ford" algorithm for finding shortest paths |
326 | 326 |
from a source node when arc lenghts can be either positive or negative, |
327 | 327 |
but the digraph should not contain directed cycles with negative total |
328 | 328 |
length. |
329 | 329 |
- \ref FloydWarshall "Floyd-Warshall" and \ref Johnson "Johnson" algorithms |
330 | 330 |
for solving the \e all-pairs \e shortest \e paths \e problem when arc |
331 | 331 |
lenghts can be either positive or negative, but the digraph should |
332 | 332 |
not contain directed cycles with negative total length. |
333 | 333 |
- \ref Suurballe A successive shortest path algorithm for finding |
334 | 334 |
arc-disjoint paths between two nodes having minimum total length. |
335 | 335 |
*/ |
336 | 336 |
|
337 | 337 |
/** |
338 | 338 |
@defgroup spantree Minimum Spanning Tree Algorithms |
339 | 339 |
@ingroup algs |
340 | 340 |
\brief Algorithms for finding minimum cost spanning trees and arborescences. |
341 | 341 |
|
342 | 342 |
This group contains the algorithms for finding minimum cost spanning |
343 | 343 |
trees and arborescences \ref clrs01algorithms. |
344 | 344 |
*/ |
345 | 345 |
|
346 | 346 |
/** |
347 | 347 |
@defgroup max_flow Maximum Flow Algorithms |
348 | 348 |
@ingroup algs |
349 | 349 |
\brief Algorithms for finding maximum flows. |
350 | 350 |
|
351 | 351 |
This group contains the algorithms for finding maximum flows and |
352 | 352 |
feasible circulations \ref clrs01algorithms, \ref amo93networkflows. |
353 | 353 |
|
354 | 354 |
The \e maximum \e flow \e problem is to find a flow of maximum value between |
355 | 355 |
a single source and a single target. Formally, there is a \f$G=(V,A)\f$ |
356 | 356 |
digraph, a \f$cap: A\rightarrow\mathbf{R}^+_0\f$ capacity function and |
357 | 357 |
\f$s, t \in V\f$ source and target nodes. |
358 | 358 |
A maximum flow is an \f$f: A\rightarrow\mathbf{R}^+_0\f$ solution of the |
359 | 359 |
following optimization problem. |
360 | 360 |
|
361 | 361 |
\f[ \max\sum_{sv\in A} f(sv) - \sum_{vs\in A} f(vs) \f] |
362 | 362 |
\f[ \sum_{uv\in A} f(uv) = \sum_{vu\in A} f(vu) |
363 | 363 |
\quad \forall u\in V\setminus\{s,t\} \f] |
364 | 364 |
\f[ 0 \leq f(uv) \leq cap(uv) \quad \forall uv\in A \f] |
365 | 365 |
|
366 | 366 |
LEMON contains several algorithms for solving maximum flow problems: |
367 | 367 |
- \ref EdmondsKarp Edmonds-Karp algorithm |
368 | 368 |
\ref edmondskarp72theoretical. |
369 | 369 |
- \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm |
370 | 370 |
\ref goldberg88newapproach. |
371 | 371 |
- \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees |
372 | 372 |
\ref dinic70algorithm, \ref sleator83dynamic. |
373 | 373 |
- \ref GoldbergTarjan !Preflow push-relabel algorithm with dynamic trees |
374 | 374 |
\ref goldberg88newapproach, \ref sleator83dynamic. |
375 | 375 |
|
376 | 376 |
In most cases the \ref Preflow algorithm provides the |
377 | 377 |
fastest method for computing a maximum flow. All implementations |
378 | 378 |
also provide functions to query the minimum cut, which is the dual |
379 | 379 |
problem of maximum flow. |
380 | 380 |
|
381 | 381 |
\ref Circulation is a preflow push-relabel algorithm implemented directly |
382 | 382 |
for finding feasible circulations, which is a somewhat different problem, |
383 | 383 |
but it is strongly related to maximum flow. |
384 | 384 |
For more information, see \ref Circulation. |
385 | 385 |
*/ |
386 | 386 |
|
387 | 387 |
/** |
388 | 388 |
@defgroup min_cost_flow_algs Minimum Cost Flow Algorithms |
389 | 389 |
@ingroup algs |
390 | 390 |
|
391 | 391 |
\brief Algorithms for finding minimum cost flows and circulations. |
392 | 392 |
|
393 | 393 |
This group contains the algorithms for finding minimum cost flows and |
394 | 394 |
circulations \ref amo93networkflows. For more information about this |
395 | 395 |
problem and its dual solution, see \ref min_cost_flow |
396 | 396 |
"Minimum Cost Flow Problem". |
397 | 397 |
|
398 | 398 |
LEMON contains several algorithms for this problem. |
399 | 399 |
- \ref NetworkSimplex Primal Network Simplex algorithm with various |
400 | 400 |
pivot strategies \ref dantzig63linearprog, \ref kellyoneill91netsimplex. |
401 | 401 |
- \ref CostScaling Cost Scaling algorithm based on push/augment and |
402 | 402 |
relabel operations \ref goldberg90approximation, \ref goldberg97efficient, |
403 | 403 |
\ref bunnagel98efficient. |
404 | 404 |
- \ref CapacityScaling Capacity Scaling algorithm based on the successive |
405 | 405 |
shortest path method \ref edmondskarp72theoretical. |
406 | 406 |
- \ref CycleCanceling Cycle-Canceling algorithms, two of which are |
407 | 407 |
strongly polynomial \ref klein67primal, \ref goldberg89cyclecanceling. |
408 | 408 |
|
409 |
In general NetworkSimplex is the most efficient implementation, |
|
410 |
but in special cases other algorithms could be faster. |
|
409 |
In general, \ref NetworkSimplex and \ref CostScaling are the most efficient |
|
410 |
implementations, but the other two algorithms could be faster in special cases. |
|
411 | 411 |
For example, if the total supply and/or capacities are rather small, |
412 |
CapacityScaling is usually the fastest algorithm (without effective scaling). |
|
412 |
\ref CapacityScaling is usually the fastest algorithm (without effective scaling). |
|
413 | 413 |
*/ |
414 | 414 |
|
415 | 415 |
/** |
416 | 416 |
@defgroup min_cut Minimum Cut Algorithms |
417 | 417 |
@ingroup algs |
418 | 418 |
|
419 | 419 |
\brief Algorithms for finding minimum cut in graphs. |
420 | 420 |
|
421 | 421 |
This group contains the algorithms for finding minimum cut in graphs. |
422 | 422 |
|
423 | 423 |
The \e minimum \e cut \e problem is to find a non-empty and non-complete |
424 | 424 |
\f$X\f$ subset of the nodes with minimum overall capacity on |
425 | 425 |
outgoing arcs. Formally, there is a \f$G=(V,A)\f$ digraph, a |
426 | 426 |
\f$cap: A\rightarrow\mathbf{R}^+_0\f$ capacity function. The minimum |
427 | 427 |
cut is the \f$X\f$ solution of the next optimization problem: |
428 | 428 |
|
429 | 429 |
\f[ \min_{X \subset V, X\not\in \{\emptyset, V\}} |
430 | 430 |
\sum_{uv\in A: u\in X, v\not\in X}cap(uv) \f] |
431 | 431 |
|
432 | 432 |
LEMON contains several algorithms related to minimum cut problems: |
433 | 433 |
|
434 | 434 |
- \ref HaoOrlin "Hao-Orlin algorithm" for calculating minimum cut |
435 | 435 |
in directed graphs. |
436 | 436 |
- \ref NagamochiIbaraki "Nagamochi-Ibaraki algorithm" for |
437 | 437 |
calculating minimum cut in undirected graphs. |
438 | 438 |
- \ref GomoryHu "Gomory-Hu tree computation" for calculating |
439 | 439 |
all-pairs minimum cut in undirected graphs. |
440 | 440 |
|
441 | 441 |
If you want to find minimum cut just between two distinict nodes, |
442 | 442 |
see the \ref max_flow "maximum flow problem". |
443 | 443 |
*/ |
444 | 444 |
|
445 | 445 |
/** |
446 | 446 |
@defgroup min_mean_cycle Minimum Mean Cycle Algorithms |
447 | 447 |
@ingroup algs |
448 | 448 |
\brief Algorithms for finding minimum mean cycles. |
449 | 449 |
|
450 | 450 |
This group contains the algorithms for finding minimum mean cycles |
451 | 451 |
\ref clrs01algorithms, \ref amo93networkflows. |
452 | 452 |
|
453 | 453 |
The \e minimum \e mean \e cycle \e problem is to find a directed cycle |
454 | 454 |
of minimum mean length (cost) in a digraph. |
455 | 455 |
The mean length of a cycle is the average length of its arcs, i.e. the |
456 | 456 |
ratio between the total length of the cycle and the number of arcs on it. |
457 | 457 |
|
458 | 458 |
This problem has an important connection to \e conservative \e length |
459 | 459 |
\e functions, too. A length function on the arcs of a digraph is called |
460 | 460 |
conservative if and only if there is no directed cycle of negative total |
461 | 461 |
length. For an arbitrary length function, the negative of the minimum |
462 | 462 |
cycle mean is the smallest \f$\epsilon\f$ value so that increasing the |
463 | 463 |
arc lengths uniformly by \f$\epsilon\f$ results in a conservative length |
464 | 464 |
function. |
465 | 465 |
|
466 | 466 |
LEMON contains three algorithms for solving the minimum mean cycle problem: |
467 | 467 |
- \ref KarpMmc Karp's original algorithm \ref amo93networkflows, |
468 | 468 |
\ref dasdan98minmeancycle. |
469 | 469 |
- \ref HartmannOrlinMmc Hartmann-Orlin's algorithm, which is an improved |
470 | 470 |
version of Karp's algorithm \ref dasdan98minmeancycle. |
471 | 471 |
- \ref HowardMmc Howard's policy iteration algorithm |
472 | 472 |
\ref dasdan98minmeancycle. |
473 | 473 |
|
474 |
In practice, the \ref HowardMmc "Howard" algorithm |
|
474 |
In practice, the \ref HowardMmc "Howard" algorithm turned out to be by far the |
|
475 | 475 |
most efficient one, though the best known theoretical bound on its running |
476 | 476 |
time is exponential. |
477 | 477 |
Both \ref KarpMmc "Karp" and \ref HartmannOrlinMmc "Hartmann-Orlin" algorithms |
478 | 478 |
run in time O(ne) and use space O(n<sup>2</sup>+e), but the latter one is |
479 | 479 |
typically faster due to the applied early termination scheme. |
480 | 480 |
*/ |
481 | 481 |
|
482 | 482 |
/** |
483 | 483 |
@defgroup matching Matching Algorithms |
484 | 484 |
@ingroup algs |
485 | 485 |
\brief Algorithms for finding matchings in graphs and bipartite graphs. |
486 | 486 |
|
487 | 487 |
This group contains the algorithms for calculating |
488 | 488 |
matchings in graphs and bipartite graphs. The general matching problem is |
489 | 489 |
finding a subset of the edges for which each node has at most one incident |
490 | 490 |
edge. |
491 | 491 |
|
492 | 492 |
There are several different algorithms for calculate matchings in |
493 | 493 |
graphs. The matching problems in bipartite graphs are generally |
494 | 494 |
easier than in general graphs. The goal of the matching optimization |
495 | 495 |
can be finding maximum cardinality, maximum weight or minimum cost |
496 | 496 |
matching. The search can be constrained to find perfect or |
497 | 497 |
maximum cardinality matching. |
498 | 498 |
|
499 | 499 |
The matching algorithms implemented in LEMON: |
500 | 500 |
- \ref MaxBipartiteMatching Hopcroft-Karp augmenting path algorithm |
501 | 501 |
for calculating maximum cardinality matching in bipartite graphs. |
502 | 502 |
- \ref PrBipartiteMatching Push-relabel algorithm |
503 | 503 |
for calculating maximum cardinality matching in bipartite graphs. |
504 | 504 |
- \ref MaxWeightedBipartiteMatching |
505 | 505 |
Successive shortest path algorithm for calculating maximum weighted |
506 | 506 |
matching and maximum weighted bipartite matching in bipartite graphs. |
507 | 507 |
- \ref MinCostMaxBipartiteMatching |
508 | 508 |
Successive shortest path algorithm for calculating minimum cost maximum |
509 | 509 |
matching in bipartite graphs. |
510 | 510 |
- \ref MaxMatching Edmond's blossom shrinking algorithm for calculating |
511 | 511 |
maximum cardinality matching in general graphs. |
512 | 512 |
- \ref MaxWeightedMatching Edmond's blossom shrinking algorithm for calculating |
513 | 513 |
maximum weighted matching in general graphs. |
514 | 514 |
- \ref MaxWeightedPerfectMatching |
515 | 515 |
Edmond's blossom shrinking algorithm for calculating maximum weighted |
516 | 516 |
perfect matching in general graphs. |
517 | 517 |
- \ref MaxFractionalMatching Push-relabel algorithm for calculating |
518 | 518 |
maximum cardinality fractional matching in general graphs. |
519 | 519 |
- \ref MaxWeightedFractionalMatching Augmenting path algorithm for calculating |
520 | 520 |
maximum weighted fractional matching in general graphs. |
521 | 521 |
- \ref MaxWeightedPerfectFractionalMatching |
522 | 522 |
Augmenting path algorithm for calculating maximum weighted |
523 | 523 |
perfect fractional matching in general graphs. |
524 | 524 |
|
525 | 525 |
\image html matching.png |
526 | 526 |
\image latex matching.eps "Min Cost Perfect Matching" width=\textwidth |
527 | 527 |
*/ |
528 | 528 |
|
529 | 529 |
/** |
530 | 530 |
@defgroup graph_properties Connectivity and Other Graph Properties |
531 | 531 |
@ingroup algs |
532 | 532 |
\brief Algorithms for discovering the graph properties |
533 | 533 |
|
534 | 534 |
This group contains the algorithms for discovering the graph properties |
535 | 535 |
like connectivity, bipartiteness, euler property, simplicity etc. |
536 | 536 |
|
537 | 537 |
\image html connected_components.png |
538 | 538 |
\image latex connected_components.eps "Connected components" width=\textwidth |
539 | 539 |
*/ |
540 | 540 |
|
541 | 541 |
/** |
542 |
@defgroup planar |
|
542 |
@defgroup planar Planar Embedding and Drawing |
|
543 | 543 |
@ingroup algs |
544 | 544 |
\brief Algorithms for planarity checking, embedding and drawing |
545 | 545 |
|
546 | 546 |
This group contains the algorithms for planarity checking, |
547 | 547 |
embedding and drawing. |
548 | 548 |
|
549 | 549 |
\image html planar.png |
550 | 550 |
\image latex planar.eps "Plane graph" width=\textwidth |
551 | 551 |
*/ |
552 | 552 |
|
553 | 553 |
/** |
554 | 554 |
@defgroup approx_algs Approximation Algorithms |
555 | 555 |
@ingroup algs |
556 | 556 |
\brief Approximation algorithms. |
557 | 557 |
|
558 | 558 |
This group contains the approximation and heuristic algorithms |
559 | 559 |
implemented in LEMON. |
560 | 560 |
|
561 | 561 |
<b>Maximum Clique Problem</b> |
562 | 562 |
- \ref GrossoLocatelliPullanMc An efficient heuristic algorithm of |
563 | 563 |
Grosso, Locatelli, and Pullan. |
564 | 564 |
*/ |
565 | 565 |
|
566 | 566 |
/** |
567 | 567 |
@defgroup auxalg Auxiliary Algorithms |
568 | 568 |
@ingroup algs |
569 | 569 |
\brief Auxiliary algorithms implemented in LEMON. |
570 | 570 |
|
571 | 571 |
This group contains some algorithms implemented in LEMON |
572 | 572 |
in order to make it easier to implement complex algorithms. |
573 | 573 |
*/ |
574 | 574 |
|
575 | 575 |
/** |
576 | 576 |
@defgroup gen_opt_group General Optimization Tools |
577 | 577 |
\brief This group contains some general optimization frameworks |
578 | 578 |
implemented in LEMON. |
579 | 579 |
|
580 | 580 |
This group contains some general optimization frameworks |
581 | 581 |
implemented in LEMON. |
582 | 582 |
*/ |
583 | 583 |
|
584 | 584 |
/** |
585 | 585 |
@defgroup lp_group LP and MIP Solvers |
586 | 586 |
@ingroup gen_opt_group |
587 | 587 |
\brief LP and MIP solver interfaces for LEMON. |
588 | 588 |
|
589 | 589 |
This group contains LP and MIP solver interfaces for LEMON. |
590 | 590 |
Various LP solvers could be used in the same manner with this |
591 | 591 |
high-level interface. |
592 | 592 |
|
593 | 593 |
The currently supported solvers are \ref glpk, \ref clp, \ref cbc, |
594 | 594 |
\ref cplex, \ref soplex. |
595 | 595 |
*/ |
596 | 596 |
|
597 | 597 |
/** |
598 | 598 |
@defgroup lp_utils Tools for Lp and Mip Solvers |
599 | 599 |
@ingroup lp_group |
600 | 600 |
\brief Helper tools to the Lp and Mip solvers. |
601 | 601 |
|
602 | 602 |
This group adds some helper tools to general optimization framework |
603 | 603 |
implemented in LEMON. |
604 | 604 |
*/ |
605 | 605 |
|
606 | 606 |
/** |
607 | 607 |
@defgroup metah Metaheuristics |
608 | 608 |
@ingroup gen_opt_group |
609 | 609 |
\brief Metaheuristics for LEMON library. |
610 | 610 |
|
611 | 611 |
This group contains some metaheuristic optimization tools. |
612 | 612 |
*/ |
613 | 613 |
|
614 | 614 |
/** |
615 | 615 |
@defgroup utils Tools and Utilities |
616 | 616 |
\brief Tools and utilities for programming in LEMON |
617 | 617 |
|
618 | 618 |
Tools and utilities for programming in LEMON. |
619 | 619 |
*/ |
620 | 620 |
|
621 | 621 |
/** |
622 | 622 |
@defgroup gutils Basic Graph Utilities |
623 | 623 |
@ingroup utils |
624 | 624 |
\brief Simple basic graph utilities. |
625 | 625 |
|
626 | 626 |
This group contains some simple basic graph utilities. |
627 | 627 |
*/ |
628 | 628 |
|
629 | 629 |
/** |
630 | 630 |
@defgroup misc Miscellaneous Tools |
631 | 631 |
@ingroup utils |
632 | 632 |
\brief Tools for development, debugging and testing. |
633 | 633 |
|
634 | 634 |
This group contains several useful tools for development, |
635 | 635 |
debugging and testing. |
636 | 636 |
*/ |
637 | 637 |
|
638 | 638 |
/** |
639 | 639 |
@defgroup timecount Time Measuring and Counting |
640 | 640 |
@ingroup misc |
641 | 641 |
\brief Simple tools for measuring the performance of algorithms. |
642 | 642 |
|
643 | 643 |
This group contains simple tools for measuring the performance |
644 | 644 |
of algorithms. |
645 | 645 |
*/ |
646 | 646 |
|
647 | 647 |
/** |
648 | 648 |
@defgroup exceptions Exceptions |
649 | 649 |
@ingroup utils |
650 | 650 |
\brief Exceptions defined in LEMON. |
651 | 651 |
|
652 | 652 |
This group contains the exceptions defined in LEMON. |
653 | 653 |
*/ |
654 | 654 |
|
655 | 655 |
/** |
656 | 656 |
@defgroup io_group Input-Output |
657 | 657 |
\brief Graph Input-Output methods |
658 | 658 |
|
659 | 659 |
This group contains the tools for importing and exporting graphs |
660 | 660 |
and graph related data. Now it supports the \ref lgf-format |
661 | 661 |
"LEMON Graph Format", the \c DIMACS format and the encapsulated |
662 | 662 |
postscript (EPS) format. |
663 | 663 |
*/ |
664 | 664 |
|
665 | 665 |
/** |
666 | 666 |
@defgroup lemon_io LEMON Graph Format |
667 | 667 |
@ingroup io_group |
668 | 668 |
\brief Reading and writing LEMON Graph Format. |
669 | 669 |
|
670 | 670 |
This group contains methods for reading and writing |
671 | 671 |
\ref lgf-format "LEMON Graph Format". |
672 | 672 |
*/ |
673 | 673 |
|
674 | 674 |
/** |
675 | 675 |
@defgroup eps_io Postscript Exporting |
676 | 676 |
@ingroup io_group |
677 | 677 |
\brief General \c EPS drawer and graph exporter |
678 | 678 |
|
679 | 679 |
This group contains general \c EPS drawing methods and special |
680 | 680 |
graph exporting tools. |
681 | 681 |
*/ |
682 | 682 |
|
683 | 683 |
/** |
684 | 684 |
@defgroup dimacs_group DIMACS Format |
685 | 685 |
@ingroup io_group |
686 | 686 |
\brief Read and write files in DIMACS format |
687 | 687 |
|
688 | 688 |
Tools to read a digraph from or write it to a file in DIMACS format data. |
689 | 689 |
*/ |
690 | 690 |
|
691 | 691 |
/** |
692 | 692 |
@defgroup nauty_group NAUTY Format |
693 | 693 |
@ingroup io_group |
694 | 694 |
\brief Read \e Nauty format |
695 | 695 |
|
696 | 696 |
Tool to read graphs from \e Nauty format data. |
697 | 697 |
*/ |
698 | 698 |
|
699 | 699 |
/** |
700 | 700 |
@defgroup concept Concepts |
701 | 701 |
\brief Skeleton classes and concept checking classes |
702 | 702 |
|
703 | 703 |
This group contains the data/algorithm skeletons and concept checking |
704 | 704 |
classes implemented in LEMON. |
705 | 705 |
|
706 | 706 |
The purpose of the classes in this group is fourfold. |
707 | 707 |
|
708 | 708 |
- These classes contain the documentations of the %concepts. In order |
709 | 709 |
to avoid document multiplications, an implementation of a concept |
710 | 710 |
simply refers to the corresponding concept class. |
711 | 711 |
|
712 | 712 |
- These classes declare every functions, <tt>typedef</tt>s etc. an |
713 | 713 |
implementation of the %concepts should provide, however completely |
714 | 714 |
without implementations and real data structures behind the |
715 | 715 |
interface. On the other hand they should provide nothing else. All |
716 | 716 |
the algorithms working on a data structure meeting a certain concept |
717 | 717 |
should compile with these classes. (Though it will not run properly, |
718 | 718 |
of course.) In this way it is easily to check if an algorithm |
719 | 719 |
doesn't use any extra feature of a certain implementation. |
720 | 720 |
|
721 | 721 |
- The concept descriptor classes also provide a <em>checker class</em> |
722 | 722 |
that makes it possible to check whether a certain implementation of a |
723 | 723 |
concept indeed provides all the required features. |
724 | 724 |
|
725 | 725 |
- Finally, They can serve as a skeleton of a new implementation of a concept. |
726 | 726 |
*/ |
727 | 727 |
|
728 | 728 |
/** |
729 | 729 |
@defgroup graph_concepts Graph Structure Concepts |
730 | 730 |
@ingroup concept |
731 | 731 |
\brief Skeleton and concept checking classes for graph structures |
732 | 732 |
|
733 | 733 |
This group contains the skeletons and concept checking classes of |
734 | 734 |
graph structures. |
735 | 735 |
*/ |
736 | 736 |
|
737 | 737 |
/** |
738 | 738 |
@defgroup map_concepts Map Concepts |
739 | 739 |
@ingroup concept |
740 | 740 |
\brief Skeleton and concept checking classes for maps |
741 | 741 |
|
742 | 742 |
This group contains the skeletons and concept checking classes of maps. |
743 | 743 |
*/ |
744 | 744 |
|
745 | 745 |
/** |
746 | 746 |
@defgroup tools Standalone Utility Applications |
747 | 747 |
|
748 | 748 |
Some utility applications are listed here. |
749 | 749 |
|
750 | 750 |
The standard compilation procedure (<tt>./configure;make</tt>) will compile |
751 | 751 |
them, as well. |
752 | 752 |
*/ |
753 | 753 |
|
754 | 754 |
/** |
755 | 755 |
\anchor demoprograms |
756 | 756 |
|
757 | 757 |
@defgroup demos Demo Programs |
758 | 758 |
|
759 | 759 |
Some demo programs are listed here. Their full source codes can be found in |
760 | 760 |
the \c demo subdirectory of the source tree. |
761 | 761 |
|
762 | 762 |
In order to compile them, use the <tt>make demo</tt> or the |
763 | 763 |
<tt>make check</tt> commands. |
764 | 764 |
*/ |
765 | 765 |
|
766 | 766 |
} |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#ifndef LEMON_CAPACITY_SCALING_H |
20 | 20 |
#define LEMON_CAPACITY_SCALING_H |
21 | 21 |
|
22 | 22 |
/// \ingroup min_cost_flow_algs |
23 | 23 |
/// |
24 | 24 |
/// \file |
25 | 25 |
/// \brief Capacity Scaling algorithm for finding a minimum cost flow. |
26 | 26 |
|
27 | 27 |
#include <vector> |
28 | 28 |
#include <limits> |
29 | 29 |
#include <lemon/core.h> |
30 | 30 |
#include <lemon/bin_heap.h> |
31 | 31 |
|
32 | 32 |
namespace lemon { |
33 | 33 |
|
34 | 34 |
/// \brief Default traits class of CapacityScaling algorithm. |
35 | 35 |
/// |
36 | 36 |
/// Default traits class of CapacityScaling algorithm. |
37 | 37 |
/// \tparam GR Digraph type. |
38 | 38 |
/// \tparam V The number type used for flow amounts, capacity bounds |
39 | 39 |
/// and supply values. By default it is \c int. |
40 | 40 |
/// \tparam C The number type used for costs and potentials. |
41 | 41 |
/// By default it is the same as \c V. |
42 | 42 |
template <typename GR, typename V = int, typename C = V> |
43 | 43 |
struct CapacityScalingDefaultTraits |
44 | 44 |
{ |
45 | 45 |
/// The type of the digraph |
46 | 46 |
typedef GR Digraph; |
47 | 47 |
/// The type of the flow amounts, capacity bounds and supply values |
48 | 48 |
typedef V Value; |
49 | 49 |
/// The type of the arc costs |
50 | 50 |
typedef C Cost; |
51 | 51 |
|
52 | 52 |
/// \brief The type of the heap used for internal Dijkstra computations. |
53 | 53 |
/// |
54 | 54 |
/// The type of the heap used for internal Dijkstra computations. |
55 | 55 |
/// It must conform to the \ref lemon::concepts::Heap "Heap" concept, |
56 | 56 |
/// its priority type must be \c Cost and its cross reference type |
57 | 57 |
/// must be \ref RangeMap "RangeMap<int>". |
58 | 58 |
typedef BinHeap<Cost, RangeMap<int> > Heap; |
59 | 59 |
}; |
60 | 60 |
|
61 | 61 |
/// \addtogroup min_cost_flow_algs |
62 | 62 |
/// @{ |
63 | 63 |
|
64 | 64 |
/// \brief Implementation of the Capacity Scaling algorithm for |
65 | 65 |
/// finding a \ref min_cost_flow "minimum cost flow". |
66 | 66 |
/// |
67 | 67 |
/// \ref CapacityScaling implements the capacity scaling version |
68 | 68 |
/// of the successive shortest path algorithm for finding a |
69 | 69 |
/// \ref min_cost_flow "minimum cost flow" \ref amo93networkflows, |
70 | 70 |
/// \ref edmondskarp72theoretical. It is an efficient dual |
71 | 71 |
/// solution method. |
72 | 72 |
/// |
73 | 73 |
/// Most of the parameters of the problem (except for the digraph) |
74 | 74 |
/// can be given using separate functions, and the algorithm can be |
75 | 75 |
/// executed using the \ref run() function. If some parameters are not |
76 | 76 |
/// specified, then default values will be used. |
77 | 77 |
/// |
78 | 78 |
/// \tparam GR The digraph type the algorithm runs on. |
79 | 79 |
/// \tparam V The number type used for flow amounts, capacity bounds |
80 | 80 |
/// and supply values in the algorithm. By default, it is \c int. |
81 | 81 |
/// \tparam C The number type used for costs and potentials in the |
82 | 82 |
/// algorithm. By default, it is the same as \c V. |
83 | 83 |
/// \tparam TR The traits class that defines various types used by the |
84 | 84 |
/// algorithm. By default, it is \ref CapacityScalingDefaultTraits |
85 | 85 |
/// "CapacityScalingDefaultTraits<GR, V, C>". |
86 | 86 |
/// In most cases, this parameter should not be set directly, |
87 | 87 |
/// consider to use the named template parameters instead. |
88 | 88 |
/// |
89 | 89 |
/// \warning Both number types must be signed and all input data must |
90 | 90 |
/// be integer. |
91 |
/// \warning This algorithm does not support negative costs for such |
|
92 |
/// arcs that have infinite upper bound. |
|
91 |
/// \warning This algorithm does not support negative costs for |
|
92 |
/// arcs having infinite upper bound. |
|
93 | 93 |
#ifdef DOXYGEN |
94 | 94 |
template <typename GR, typename V, typename C, typename TR> |
95 | 95 |
#else |
96 | 96 |
template < typename GR, typename V = int, typename C = V, |
97 | 97 |
typename TR = CapacityScalingDefaultTraits<GR, V, C> > |
98 | 98 |
#endif |
99 | 99 |
class CapacityScaling |
100 | 100 |
{ |
101 | 101 |
public: |
102 | 102 |
|
103 | 103 |
/// The type of the digraph |
104 | 104 |
typedef typename TR::Digraph Digraph; |
105 | 105 |
/// The type of the flow amounts, capacity bounds and supply values |
106 | 106 |
typedef typename TR::Value Value; |
107 | 107 |
/// The type of the arc costs |
108 | 108 |
typedef typename TR::Cost Cost; |
109 | 109 |
|
110 | 110 |
/// The type of the heap used for internal Dijkstra computations |
111 | 111 |
typedef typename TR::Heap Heap; |
112 | 112 |
|
113 | 113 |
/// The \ref CapacityScalingDefaultTraits "traits class" of the algorithm |
114 | 114 |
typedef TR Traits; |
115 | 115 |
|
116 | 116 |
public: |
117 | 117 |
|
118 | 118 |
/// \brief Problem type constants for the \c run() function. |
119 | 119 |
/// |
120 | 120 |
/// Enum type containing the problem type constants that can be |
121 | 121 |
/// returned by the \ref run() function of the algorithm. |
122 | 122 |
enum ProblemType { |
123 | 123 |
/// The problem has no feasible solution (flow). |
124 | 124 |
INFEASIBLE, |
125 | 125 |
/// The problem has optimal solution (i.e. it is feasible and |
126 | 126 |
/// bounded), and the algorithm has found optimal flow and node |
127 | 127 |
/// potentials (primal and dual solutions). |
128 | 128 |
OPTIMAL, |
129 | 129 |
/// The digraph contains an arc of negative cost and infinite |
130 | 130 |
/// upper bound. It means that the objective function is unbounded |
131 | 131 |
/// on that arc, however, note that it could actually be bounded |
132 | 132 |
/// over the feasible flows, but this algroithm cannot handle |
133 | 133 |
/// these cases. |
134 | 134 |
UNBOUNDED |
135 | 135 |
}; |
136 | 136 |
|
137 | 137 |
private: |
138 | 138 |
|
139 | 139 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
140 | 140 |
|
141 | 141 |
typedef std::vector<int> IntVector; |
142 | 142 |
typedef std::vector<Value> ValueVector; |
143 | 143 |
typedef std::vector<Cost> CostVector; |
144 | 144 |
typedef std::vector<char> BoolVector; |
145 | 145 |
// Note: vector<char> is used instead of vector<bool> for efficiency reasons |
146 | 146 |
|
147 | 147 |
private: |
148 | 148 |
|
149 | 149 |
// Data related to the underlying digraph |
150 | 150 |
const GR &_graph; |
151 | 151 |
int _node_num; |
152 | 152 |
int _arc_num; |
153 | 153 |
int _res_arc_num; |
154 | 154 |
int _root; |
155 | 155 |
|
156 | 156 |
// Parameters of the problem |
157 | 157 |
bool _have_lower; |
158 | 158 |
Value _sum_supply; |
159 | 159 |
|
160 | 160 |
// Data structures for storing the digraph |
161 | 161 |
IntNodeMap _node_id; |
162 | 162 |
IntArcMap _arc_idf; |
163 | 163 |
IntArcMap _arc_idb; |
164 | 164 |
IntVector _first_out; |
165 | 165 |
BoolVector _forward; |
166 | 166 |
IntVector _source; |
167 | 167 |
IntVector _target; |
168 | 168 |
IntVector _reverse; |
169 | 169 |
|
170 | 170 |
// Node and arc data |
171 | 171 |
ValueVector _lower; |
172 | 172 |
ValueVector _upper; |
173 | 173 |
CostVector _cost; |
174 | 174 |
ValueVector _supply; |
175 | 175 |
|
176 | 176 |
ValueVector _res_cap; |
177 | 177 |
CostVector _pi; |
178 | 178 |
ValueVector _excess; |
179 | 179 |
IntVector _excess_nodes; |
180 | 180 |
IntVector _deficit_nodes; |
181 | 181 |
|
182 | 182 |
Value _delta; |
183 | 183 |
int _factor; |
184 | 184 |
IntVector _pred; |
185 | 185 |
|
186 | 186 |
public: |
187 | 187 |
|
188 | 188 |
/// \brief Constant for infinite upper bounds (capacities). |
189 | 189 |
/// |
190 | 190 |
/// Constant for infinite upper bounds (capacities). |
191 | 191 |
/// It is \c std::numeric_limits<Value>::infinity() if available, |
192 | 192 |
/// \c std::numeric_limits<Value>::max() otherwise. |
193 | 193 |
const Value INF; |
194 | 194 |
|
195 | 195 |
private: |
196 | 196 |
|
197 | 197 |
// Special implementation of the Dijkstra algorithm for finding |
198 | 198 |
// shortest paths in the residual network of the digraph with |
199 | 199 |
// respect to the reduced arc costs and modifying the node |
200 | 200 |
// potentials according to the found distance labels. |
201 | 201 |
class ResidualDijkstra |
202 | 202 |
{ |
203 | 203 |
private: |
204 | 204 |
|
205 | 205 |
int _node_num; |
206 | 206 |
bool _geq; |
207 | 207 |
const IntVector &_first_out; |
208 | 208 |
const IntVector &_target; |
209 | 209 |
const CostVector &_cost; |
210 | 210 |
const ValueVector &_res_cap; |
211 | 211 |
const ValueVector &_excess; |
212 | 212 |
CostVector &_pi; |
213 | 213 |
IntVector &_pred; |
214 | 214 |
|
215 | 215 |
IntVector _proc_nodes; |
216 | 216 |
CostVector _dist; |
217 | 217 |
|
218 | 218 |
public: |
219 | 219 |
|
220 | 220 |
ResidualDijkstra(CapacityScaling& cs) : |
221 | 221 |
_node_num(cs._node_num), _geq(cs._sum_supply < 0), |
222 | 222 |
_first_out(cs._first_out), _target(cs._target), _cost(cs._cost), |
223 | 223 |
_res_cap(cs._res_cap), _excess(cs._excess), _pi(cs._pi), |
224 | 224 |
_pred(cs._pred), _dist(cs._node_num) |
225 | 225 |
{} |
226 | 226 |
|
227 | 227 |
int run(int s, Value delta = 1) { |
228 | 228 |
RangeMap<int> heap_cross_ref(_node_num, Heap::PRE_HEAP); |
229 | 229 |
Heap heap(heap_cross_ref); |
230 | 230 |
heap.push(s, 0); |
231 | 231 |
_pred[s] = -1; |
232 | 232 |
_proc_nodes.clear(); |
233 | 233 |
|
234 | 234 |
// Process nodes |
235 | 235 |
while (!heap.empty() && _excess[heap.top()] > -delta) { |
236 | 236 |
int u = heap.top(), v; |
237 | 237 |
Cost d = heap.prio() + _pi[u], dn; |
238 | 238 |
_dist[u] = heap.prio(); |
239 | 239 |
_proc_nodes.push_back(u); |
240 | 240 |
heap.pop(); |
241 | 241 |
|
242 | 242 |
// Traverse outgoing residual arcs |
243 | 243 |
int last_out = _geq ? _first_out[u+1] : _first_out[u+1] - 1; |
244 | 244 |
for (int a = _first_out[u]; a != last_out; ++a) { |
245 | 245 |
if (_res_cap[a] < delta) continue; |
246 | 246 |
v = _target[a]; |
247 | 247 |
switch (heap.state(v)) { |
248 | 248 |
case Heap::PRE_HEAP: |
249 | 249 |
heap.push(v, d + _cost[a] - _pi[v]); |
250 | 250 |
_pred[v] = a; |
251 | 251 |
break; |
252 | 252 |
case Heap::IN_HEAP: |
253 | 253 |
dn = d + _cost[a] - _pi[v]; |
254 | 254 |
if (dn < heap[v]) { |
255 | 255 |
heap.decrease(v, dn); |
256 | 256 |
_pred[v] = a; |
257 | 257 |
} |
258 | 258 |
break; |
259 | 259 |
case Heap::POST_HEAP: |
260 | 260 |
break; |
261 | 261 |
} |
262 | 262 |
} |
263 | 263 |
} |
264 | 264 |
if (heap.empty()) return -1; |
265 | 265 |
|
266 | 266 |
// Update potentials of processed nodes |
267 | 267 |
int t = heap.top(); |
268 | 268 |
Cost dt = heap.prio(); |
269 | 269 |
for (int i = 0; i < int(_proc_nodes.size()); ++i) { |
270 | 270 |
_pi[_proc_nodes[i]] += _dist[_proc_nodes[i]] - dt; |
271 | 271 |
} |
272 | 272 |
|
273 | 273 |
return t; |
274 | 274 |
} |
275 | 275 |
|
276 | 276 |
}; //class ResidualDijkstra |
277 | 277 |
|
278 | 278 |
public: |
279 | 279 |
|
280 | 280 |
/// \name Named Template Parameters |
281 | 281 |
/// @{ |
282 | 282 |
|
283 | 283 |
template <typename T> |
284 | 284 |
struct SetHeapTraits : public Traits { |
285 | 285 |
typedef T Heap; |
286 | 286 |
}; |
287 | 287 |
|
288 | 288 |
/// \brief \ref named-templ-param "Named parameter" for setting |
289 | 289 |
/// \c Heap type. |
290 | 290 |
/// |
291 | 291 |
/// \ref named-templ-param "Named parameter" for setting \c Heap |
292 | 292 |
/// type, which is used for internal Dijkstra computations. |
293 | 293 |
/// It must conform to the \ref lemon::concepts::Heap "Heap" concept, |
294 | 294 |
/// its priority type must be \c Cost and its cross reference type |
295 | 295 |
/// must be \ref RangeMap "RangeMap<int>". |
296 | 296 |
template <typename T> |
297 | 297 |
struct SetHeap |
298 | 298 |
: public CapacityScaling<GR, V, C, SetHeapTraits<T> > { |
299 | 299 |
typedef CapacityScaling<GR, V, C, SetHeapTraits<T> > Create; |
300 | 300 |
}; |
301 | 301 |
|
302 | 302 |
/// @} |
303 | 303 |
|
304 | 304 |
protected: |
305 | 305 |
|
306 | 306 |
CapacityScaling() {} |
307 | 307 |
|
308 | 308 |
public: |
309 | 309 |
|
310 | 310 |
/// \brief Constructor. |
311 | 311 |
/// |
312 | 312 |
/// The constructor of the class. |
313 | 313 |
/// |
314 | 314 |
/// \param graph The digraph the algorithm runs on. |
315 | 315 |
CapacityScaling(const GR& graph) : |
316 | 316 |
_graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph), |
317 | 317 |
INF(std::numeric_limits<Value>::has_infinity ? |
318 | 318 |
std::numeric_limits<Value>::infinity() : |
319 | 319 |
std::numeric_limits<Value>::max()) |
320 | 320 |
{ |
321 | 321 |
// Check the number types |
322 | 322 |
LEMON_ASSERT(std::numeric_limits<Value>::is_signed, |
323 | 323 |
"The flow type of CapacityScaling must be signed"); |
324 | 324 |
LEMON_ASSERT(std::numeric_limits<Cost>::is_signed, |
325 | 325 |
"The cost type of CapacityScaling must be signed"); |
326 | 326 |
|
327 | 327 |
// Reset data structures |
328 | 328 |
reset(); |
329 | 329 |
} |
330 | 330 |
|
331 | 331 |
/// \name Parameters |
332 | 332 |
/// The parameters of the algorithm can be specified using these |
333 | 333 |
/// functions. |
334 | 334 |
|
335 | 335 |
/// @{ |
336 | 336 |
|
337 | 337 |
/// \brief Set the lower bounds on the arcs. |
338 | 338 |
/// |
339 | 339 |
/// This function sets the lower bounds on the arcs. |
340 | 340 |
/// If it is not used before calling \ref run(), the lower bounds |
341 | 341 |
/// will be set to zero on all arcs. |
342 | 342 |
/// |
343 | 343 |
/// \param map An arc map storing the lower bounds. |
344 | 344 |
/// Its \c Value type must be convertible to the \c Value type |
345 | 345 |
/// of the algorithm. |
346 | 346 |
/// |
347 | 347 |
/// \return <tt>(*this)</tt> |
348 | 348 |
template <typename LowerMap> |
349 | 349 |
CapacityScaling& lowerMap(const LowerMap& map) { |
350 | 350 |
_have_lower = true; |
351 | 351 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
352 | 352 |
_lower[_arc_idf[a]] = map[a]; |
353 | 353 |
_lower[_arc_idb[a]] = map[a]; |
354 | 354 |
} |
355 | 355 |
return *this; |
356 | 356 |
} |
357 | 357 |
|
358 | 358 |
/// \brief Set the upper bounds (capacities) on the arcs. |
359 | 359 |
/// |
360 | 360 |
/// This function sets the upper bounds (capacities) on the arcs. |
361 | 361 |
/// If it is not used before calling \ref run(), the upper bounds |
362 | 362 |
/// will be set to \ref INF on all arcs (i.e. the flow value will be |
363 | 363 |
/// unbounded from above). |
364 | 364 |
/// |
365 | 365 |
/// \param map An arc map storing the upper bounds. |
366 | 366 |
/// Its \c Value type must be convertible to the \c Value type |
367 | 367 |
/// of the algorithm. |
368 | 368 |
/// |
369 | 369 |
/// \return <tt>(*this)</tt> |
370 | 370 |
template<typename UpperMap> |
371 | 371 |
CapacityScaling& upperMap(const UpperMap& map) { |
372 | 372 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
373 | 373 |
_upper[_arc_idf[a]] = map[a]; |
374 | 374 |
} |
375 | 375 |
return *this; |
376 | 376 |
} |
377 | 377 |
|
378 | 378 |
/// \brief Set the costs of the arcs. |
379 | 379 |
/// |
380 | 380 |
/// This function sets the costs of the arcs. |
381 | 381 |
/// If it is not used before calling \ref run(), the costs |
382 | 382 |
/// will be set to \c 1 on all arcs. |
383 | 383 |
/// |
384 | 384 |
/// \param map An arc map storing the costs. |
385 | 385 |
/// Its \c Value type must be convertible to the \c Cost type |
386 | 386 |
/// of the algorithm. |
387 | 387 |
/// |
388 | 388 |
/// \return <tt>(*this)</tt> |
389 | 389 |
template<typename CostMap> |
390 | 390 |
CapacityScaling& costMap(const CostMap& map) { |
391 | 391 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
392 | 392 |
_cost[_arc_idf[a]] = map[a]; |
393 | 393 |
_cost[_arc_idb[a]] = -map[a]; |
394 | 394 |
} |
395 | 395 |
return *this; |
396 | 396 |
} |
397 | 397 |
|
398 | 398 |
/// \brief Set the supply values of the nodes. |
399 | 399 |
/// |
400 | 400 |
/// This function sets the supply values of the nodes. |
401 | 401 |
/// If neither this function nor \ref stSupply() is used before |
402 | 402 |
/// calling \ref run(), the supply of each node will be set to zero. |
403 | 403 |
/// |
404 | 404 |
/// \param map A node map storing the supply values. |
405 | 405 |
/// Its \c Value type must be convertible to the \c Value type |
406 | 406 |
/// of the algorithm. |
407 | 407 |
/// |
408 | 408 |
/// \return <tt>(*this)</tt> |
409 | 409 |
template<typename SupplyMap> |
410 | 410 |
CapacityScaling& supplyMap(const SupplyMap& map) { |
411 | 411 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
412 | 412 |
_supply[_node_id[n]] = map[n]; |
413 | 413 |
} |
414 | 414 |
return *this; |
415 | 415 |
} |
416 | 416 |
|
417 | 417 |
/// \brief Set single source and target nodes and a supply value. |
418 | 418 |
/// |
419 | 419 |
/// This function sets a single source node and a single target node |
420 | 420 |
/// and the required flow value. |
421 | 421 |
/// If neither this function nor \ref supplyMap() is used before |
422 | 422 |
/// calling \ref run(), the supply of each node will be set to zero. |
423 | 423 |
/// |
424 | 424 |
/// Using this function has the same effect as using \ref supplyMap() |
425 |
/// with |
|
425 |
/// with a map in which \c k is assigned to \c s, \c -k is |
|
426 | 426 |
/// assigned to \c t and all other nodes have zero supply value. |
427 | 427 |
/// |
428 | 428 |
/// \param s The source node. |
429 | 429 |
/// \param t The target node. |
430 | 430 |
/// \param k The required amount of flow from node \c s to node \c t |
431 | 431 |
/// (i.e. the supply of \c s and the demand of \c t). |
432 | 432 |
/// |
433 | 433 |
/// \return <tt>(*this)</tt> |
434 | 434 |
CapacityScaling& stSupply(const Node& s, const Node& t, Value k) { |
435 | 435 |
for (int i = 0; i != _node_num; ++i) { |
436 | 436 |
_supply[i] = 0; |
437 | 437 |
} |
438 | 438 |
_supply[_node_id[s]] = k; |
439 | 439 |
_supply[_node_id[t]] = -k; |
440 | 440 |
return *this; |
441 | 441 |
} |
442 | 442 |
|
443 | 443 |
/// @} |
444 | 444 |
|
445 | 445 |
/// \name Execution control |
446 | 446 |
/// The algorithm can be executed using \ref run(). |
447 | 447 |
|
448 | 448 |
/// @{ |
449 | 449 |
|
450 | 450 |
/// \brief Run the algorithm. |
451 | 451 |
/// |
452 | 452 |
/// This function runs the algorithm. |
453 | 453 |
/// The paramters can be specified using functions \ref lowerMap(), |
454 | 454 |
/// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply(). |
455 | 455 |
/// For example, |
456 | 456 |
/// \code |
457 | 457 |
/// CapacityScaling<ListDigraph> cs(graph); |
458 | 458 |
/// cs.lowerMap(lower).upperMap(upper).costMap(cost) |
459 | 459 |
/// .supplyMap(sup).run(); |
460 | 460 |
/// \endcode |
461 | 461 |
/// |
462 | 462 |
/// This function can be called more than once. All the given parameters |
463 | 463 |
/// are kept for the next call, unless \ref resetParams() or \ref reset() |
464 | 464 |
/// is used, thus only the modified parameters have to be set again. |
465 | 465 |
/// If the underlying digraph was also modified after the construction |
466 | 466 |
/// of the class (or the last \ref reset() call), then the \ref reset() |
467 | 467 |
/// function must be called. |
468 | 468 |
/// |
469 | 469 |
/// \param factor The capacity scaling factor. It must be larger than |
470 | 470 |
/// one to use scaling. If it is less or equal to one, then scaling |
471 | 471 |
/// will be disabled. |
472 | 472 |
/// |
473 | 473 |
/// \return \c INFEASIBLE if no feasible flow exists, |
474 | 474 |
/// \n \c OPTIMAL if the problem has optimal solution |
475 | 475 |
/// (i.e. it is feasible and bounded), and the algorithm has found |
476 | 476 |
/// optimal flow and node potentials (primal and dual solutions), |
477 | 477 |
/// \n \c UNBOUNDED if the digraph contains an arc of negative cost |
478 | 478 |
/// and infinite upper bound. It means that the objective function |
479 | 479 |
/// is unbounded on that arc, however, note that it could actually be |
480 | 480 |
/// bounded over the feasible flows, but this algroithm cannot handle |
481 | 481 |
/// these cases. |
482 | 482 |
/// |
483 | 483 |
/// \see ProblemType |
484 | 484 |
/// \see resetParams(), reset() |
485 | 485 |
ProblemType run(int factor = 4) { |
486 | 486 |
_factor = factor; |
487 | 487 |
ProblemType pt = init(); |
488 | 488 |
if (pt != OPTIMAL) return pt; |
489 | 489 |
return start(); |
490 | 490 |
} |
491 | 491 |
|
492 | 492 |
/// \brief Reset all the parameters that have been given before. |
493 | 493 |
/// |
494 | 494 |
/// This function resets all the paramaters that have been given |
495 | 495 |
/// before using functions \ref lowerMap(), \ref upperMap(), |
496 | 496 |
/// \ref costMap(), \ref supplyMap(), \ref stSupply(). |
497 | 497 |
/// |
498 | 498 |
/// It is useful for multiple \ref run() calls. Basically, all the given |
499 | 499 |
/// parameters are kept for the next \ref run() call, unless |
500 | 500 |
/// \ref resetParams() or \ref reset() is used. |
501 | 501 |
/// If the underlying digraph was also modified after the construction |
502 | 502 |
/// of the class or the last \ref reset() call, then the \ref reset() |
503 | 503 |
/// function must be used, otherwise \ref resetParams() is sufficient. |
504 | 504 |
/// |
505 | 505 |
/// For example, |
506 | 506 |
/// \code |
507 | 507 |
/// CapacityScaling<ListDigraph> cs(graph); |
508 | 508 |
/// |
509 | 509 |
/// // First run |
510 | 510 |
/// cs.lowerMap(lower).upperMap(upper).costMap(cost) |
511 | 511 |
/// .supplyMap(sup).run(); |
512 | 512 |
/// |
513 | 513 |
/// // Run again with modified cost map (resetParams() is not called, |
514 | 514 |
/// // so only the cost map have to be set again) |
515 | 515 |
/// cost[e] += 100; |
516 | 516 |
/// cs.costMap(cost).run(); |
517 | 517 |
/// |
518 | 518 |
/// // Run again from scratch using resetParams() |
519 | 519 |
/// // (the lower bounds will be set to zero on all arcs) |
520 | 520 |
/// cs.resetParams(); |
521 | 521 |
/// cs.upperMap(capacity).costMap(cost) |
522 | 522 |
/// .supplyMap(sup).run(); |
523 | 523 |
/// \endcode |
524 | 524 |
/// |
525 | 525 |
/// \return <tt>(*this)</tt> |
526 | 526 |
/// |
527 | 527 |
/// \see reset(), run() |
528 | 528 |
CapacityScaling& resetParams() { |
529 | 529 |
for (int i = 0; i != _node_num; ++i) { |
530 | 530 |
_supply[i] = 0; |
531 | 531 |
} |
532 | 532 |
for (int j = 0; j != _res_arc_num; ++j) { |
533 | 533 |
_lower[j] = 0; |
534 | 534 |
_upper[j] = INF; |
535 | 535 |
_cost[j] = _forward[j] ? 1 : -1; |
536 | 536 |
} |
537 | 537 |
_have_lower = false; |
538 | 538 |
return *this; |
539 | 539 |
} |
540 | 540 |
|
541 | 541 |
/// \brief Reset the internal data structures and all the parameters |
542 | 542 |
/// that have been given before. |
543 | 543 |
/// |
544 | 544 |
/// This function resets the internal data structures and all the |
545 | 545 |
/// paramaters that have been given before using functions \ref lowerMap(), |
546 | 546 |
/// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply(). |
547 | 547 |
/// |
548 | 548 |
/// It is useful for multiple \ref run() calls. Basically, all the given |
549 | 549 |
/// parameters are kept for the next \ref run() call, unless |
550 | 550 |
/// \ref resetParams() or \ref reset() is used. |
551 | 551 |
/// If the underlying digraph was also modified after the construction |
552 | 552 |
/// of the class or the last \ref reset() call, then the \ref reset() |
553 | 553 |
/// function must be used, otherwise \ref resetParams() is sufficient. |
554 | 554 |
/// |
555 | 555 |
/// See \ref resetParams() for examples. |
556 | 556 |
/// |
557 | 557 |
/// \return <tt>(*this)</tt> |
558 | 558 |
/// |
559 | 559 |
/// \see resetParams(), run() |
560 | 560 |
CapacityScaling& reset() { |
561 | 561 |
// Resize vectors |
562 | 562 |
_node_num = countNodes(_graph); |
563 | 563 |
_arc_num = countArcs(_graph); |
564 | 564 |
_res_arc_num = 2 * (_arc_num + _node_num); |
565 | 565 |
_root = _node_num; |
566 | 566 |
++_node_num; |
567 | 567 |
|
568 | 568 |
_first_out.resize(_node_num + 1); |
569 | 569 |
_forward.resize(_res_arc_num); |
570 | 570 |
_source.resize(_res_arc_num); |
571 | 571 |
_target.resize(_res_arc_num); |
572 | 572 |
_reverse.resize(_res_arc_num); |
573 | 573 |
|
574 | 574 |
_lower.resize(_res_arc_num); |
575 | 575 |
_upper.resize(_res_arc_num); |
576 | 576 |
_cost.resize(_res_arc_num); |
577 | 577 |
_supply.resize(_node_num); |
578 | 578 |
|
579 | 579 |
_res_cap.resize(_res_arc_num); |
580 | 580 |
_pi.resize(_node_num); |
581 | 581 |
_excess.resize(_node_num); |
582 | 582 |
_pred.resize(_node_num); |
583 | 583 |
|
584 | 584 |
// Copy the graph |
585 | 585 |
int i = 0, j = 0, k = 2 * _arc_num + _node_num - 1; |
586 | 586 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
587 | 587 |
_node_id[n] = i; |
588 | 588 |
} |
589 | 589 |
i = 0; |
590 | 590 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
591 | 591 |
_first_out[i] = j; |
592 | 592 |
for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
593 | 593 |
_arc_idf[a] = j; |
594 | 594 |
_forward[j] = true; |
595 | 595 |
_source[j] = i; |
596 | 596 |
_target[j] = _node_id[_graph.runningNode(a)]; |
597 | 597 |
} |
598 | 598 |
for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
599 | 599 |
_arc_idb[a] = j; |
600 | 600 |
_forward[j] = false; |
601 | 601 |
_source[j] = i; |
602 | 602 |
_target[j] = _node_id[_graph.runningNode(a)]; |
603 | 603 |
} |
604 | 604 |
_forward[j] = false; |
605 | 605 |
_source[j] = i; |
606 | 606 |
_target[j] = _root; |
607 | 607 |
_reverse[j] = k; |
608 | 608 |
_forward[k] = true; |
609 | 609 |
_source[k] = _root; |
610 | 610 |
_target[k] = i; |
611 | 611 |
_reverse[k] = j; |
612 | 612 |
++j; ++k; |
613 | 613 |
} |
614 | 614 |
_first_out[i] = j; |
615 | 615 |
_first_out[_node_num] = k; |
616 | 616 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
617 | 617 |
int fi = _arc_idf[a]; |
618 | 618 |
int bi = _arc_idb[a]; |
619 | 619 |
_reverse[fi] = bi; |
620 | 620 |
_reverse[bi] = fi; |
621 | 621 |
} |
622 | 622 |
|
623 | 623 |
// Reset parameters |
624 | 624 |
resetParams(); |
625 | 625 |
return *this; |
626 | 626 |
} |
627 | 627 |
|
628 | 628 |
/// @} |
629 | 629 |
|
630 | 630 |
/// \name Query Functions |
631 | 631 |
/// The results of the algorithm can be obtained using these |
632 | 632 |
/// functions.\n |
633 | 633 |
/// The \ref run() function must be called before using them. |
634 | 634 |
|
635 | 635 |
/// @{ |
636 | 636 |
|
637 | 637 |
/// \brief Return the total cost of the found flow. |
638 | 638 |
/// |
639 | 639 |
/// This function returns the total cost of the found flow. |
640 | 640 |
/// Its complexity is O(e). |
641 | 641 |
/// |
642 | 642 |
/// \note The return type of the function can be specified as a |
643 | 643 |
/// template parameter. For example, |
644 | 644 |
/// \code |
645 | 645 |
/// cs.totalCost<double>(); |
646 | 646 |
/// \endcode |
647 | 647 |
/// It is useful if the total cost cannot be stored in the \c Cost |
648 | 648 |
/// type of the algorithm, which is the default return type of the |
649 | 649 |
/// function. |
650 | 650 |
/// |
651 | 651 |
/// \pre \ref run() must be called before using this function. |
652 | 652 |
template <typename Number> |
653 | 653 |
Number totalCost() const { |
654 | 654 |
Number c = 0; |
655 | 655 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
656 | 656 |
int i = _arc_idb[a]; |
657 | 657 |
c += static_cast<Number>(_res_cap[i]) * |
658 | 658 |
(-static_cast<Number>(_cost[i])); |
659 | 659 |
} |
660 | 660 |
return c; |
661 | 661 |
} |
662 | 662 |
|
663 | 663 |
#ifndef DOXYGEN |
664 | 664 |
Cost totalCost() const { |
665 | 665 |
return totalCost<Cost>(); |
666 | 666 |
} |
667 | 667 |
#endif |
668 | 668 |
|
669 | 669 |
/// \brief Return the flow on the given arc. |
670 | 670 |
/// |
671 | 671 |
/// This function returns the flow on the given arc. |
672 | 672 |
/// |
673 | 673 |
/// \pre \ref run() must be called before using this function. |
674 | 674 |
Value flow(const Arc& a) const { |
675 | 675 |
return _res_cap[_arc_idb[a]]; |
676 | 676 |
} |
677 | 677 |
|
678 | 678 |
/// \brief Return the flow map (the primal solution). |
679 | 679 |
/// |
680 | 680 |
/// This function copies the flow value on each arc into the given |
681 | 681 |
/// map. The \c Value type of the algorithm must be convertible to |
682 | 682 |
/// the \c Value type of the map. |
683 | 683 |
/// |
684 | 684 |
/// \pre \ref run() must be called before using this function. |
685 | 685 |
template <typename FlowMap> |
686 | 686 |
void flowMap(FlowMap &map) const { |
687 | 687 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
688 | 688 |
map.set(a, _res_cap[_arc_idb[a]]); |
689 | 689 |
} |
690 | 690 |
} |
691 | 691 |
|
692 | 692 |
/// \brief Return the potential (dual value) of the given node. |
693 | 693 |
/// |
694 | 694 |
/// This function returns the potential (dual value) of the |
695 | 695 |
/// given node. |
696 | 696 |
/// |
697 | 697 |
/// \pre \ref run() must be called before using this function. |
698 | 698 |
Cost potential(const Node& n) const { |
699 | 699 |
return _pi[_node_id[n]]; |
700 | 700 |
} |
701 | 701 |
|
702 | 702 |
/// \brief Return the potential map (the dual solution). |
703 | 703 |
/// |
704 | 704 |
/// This function copies the potential (dual value) of each node |
705 | 705 |
/// into the given map. |
706 | 706 |
/// The \c Cost type of the algorithm must be convertible to the |
707 | 707 |
/// \c Value type of the map. |
708 | 708 |
/// |
709 | 709 |
/// \pre \ref run() must be called before using this function. |
710 | 710 |
template <typename PotentialMap> |
711 | 711 |
void potentialMap(PotentialMap &map) const { |
712 | 712 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
713 | 713 |
map.set(n, _pi[_node_id[n]]); |
714 | 714 |
} |
715 | 715 |
} |
716 | 716 |
|
717 | 717 |
/// @} |
718 | 718 |
|
719 | 719 |
private: |
720 | 720 |
|
721 | 721 |
// Initialize the algorithm |
722 | 722 |
ProblemType init() { |
723 | 723 |
if (_node_num <= 1) return INFEASIBLE; |
724 | 724 |
|
725 | 725 |
// Check the sum of supply values |
726 | 726 |
_sum_supply = 0; |
727 | 727 |
for (int i = 0; i != _root; ++i) { |
728 | 728 |
_sum_supply += _supply[i]; |
729 | 729 |
} |
730 | 730 |
if (_sum_supply > 0) return INFEASIBLE; |
731 | 731 |
|
732 | 732 |
// Initialize vectors |
733 | 733 |
for (int i = 0; i != _root; ++i) { |
734 | 734 |
_pi[i] = 0; |
735 | 735 |
_excess[i] = _supply[i]; |
736 | 736 |
} |
737 | 737 |
|
738 | 738 |
// Remove non-zero lower bounds |
739 | 739 |
const Value MAX = std::numeric_limits<Value>::max(); |
740 | 740 |
int last_out; |
741 | 741 |
if (_have_lower) { |
742 | 742 |
for (int i = 0; i != _root; ++i) { |
743 | 743 |
last_out = _first_out[i+1]; |
744 | 744 |
for (int j = _first_out[i]; j != last_out; ++j) { |
745 | 745 |
if (_forward[j]) { |
746 | 746 |
Value c = _lower[j]; |
747 | 747 |
if (c >= 0) { |
748 | 748 |
_res_cap[j] = _upper[j] < MAX ? _upper[j] - c : INF; |
749 | 749 |
} else { |
750 | 750 |
_res_cap[j] = _upper[j] < MAX + c ? _upper[j] - c : INF; |
751 | 751 |
} |
752 | 752 |
_excess[i] -= c; |
753 | 753 |
_excess[_target[j]] += c; |
754 | 754 |
} else { |
755 | 755 |
_res_cap[j] = 0; |
756 | 756 |
} |
757 | 757 |
} |
758 | 758 |
} |
759 | 759 |
} else { |
760 | 760 |
for (int j = 0; j != _res_arc_num; ++j) { |
761 | 761 |
_res_cap[j] = _forward[j] ? _upper[j] : 0; |
762 | 762 |
} |
763 | 763 |
} |
764 | 764 |
|
765 | 765 |
// Handle negative costs |
766 | 766 |
for (int i = 0; i != _root; ++i) { |
767 | 767 |
last_out = _first_out[i+1] - 1; |
768 | 768 |
for (int j = _first_out[i]; j != last_out; ++j) { |
769 | 769 |
Value rc = _res_cap[j]; |
770 | 770 |
if (_cost[j] < 0 && rc > 0) { |
771 | 771 |
if (rc >= MAX) return UNBOUNDED; |
772 | 772 |
_excess[i] -= rc; |
773 | 773 |
_excess[_target[j]] += rc; |
774 | 774 |
_res_cap[j] = 0; |
775 | 775 |
_res_cap[_reverse[j]] += rc; |
776 | 776 |
} |
777 | 777 |
} |
778 | 778 |
} |
779 | 779 |
|
780 | 780 |
// Handle GEQ supply type |
781 | 781 |
if (_sum_supply < 0) { |
782 | 782 |
_pi[_root] = 0; |
783 | 783 |
_excess[_root] = -_sum_supply; |
784 | 784 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
785 | 785 |
int ra = _reverse[a]; |
786 | 786 |
_res_cap[a] = -_sum_supply + 1; |
787 | 787 |
_res_cap[ra] = 0; |
788 | 788 |
_cost[a] = 0; |
789 | 789 |
_cost[ra] = 0; |
790 | 790 |
} |
791 | 791 |
} else { |
792 | 792 |
_pi[_root] = 0; |
793 | 793 |
_excess[_root] = 0; |
794 | 794 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
795 | 795 |
int ra = _reverse[a]; |
796 | 796 |
_res_cap[a] = 1; |
797 | 797 |
_res_cap[ra] = 0; |
798 | 798 |
_cost[a] = 0; |
799 | 799 |
_cost[ra] = 0; |
800 | 800 |
} |
801 | 801 |
} |
802 | 802 |
|
803 | 803 |
// Initialize delta value |
804 | 804 |
if (_factor > 1) { |
805 | 805 |
// With scaling |
806 | 806 |
Value max_sup = 0, max_dem = 0, max_cap = 0; |
807 | 807 |
for (int i = 0; i != _root; ++i) { |
808 | 808 |
Value ex = _excess[i]; |
809 | 809 |
if ( ex > max_sup) max_sup = ex; |
810 | 810 |
if (-ex > max_dem) max_dem = -ex; |
811 | 811 |
int last_out = _first_out[i+1] - 1; |
812 | 812 |
for (int j = _first_out[i]; j != last_out; ++j) { |
813 | 813 |
if (_res_cap[j] > max_cap) max_cap = _res_cap[j]; |
814 | 814 |
} |
815 | 815 |
} |
816 | 816 |
max_sup = std::min(std::min(max_sup, max_dem), max_cap); |
817 | 817 |
for (_delta = 1; 2 * _delta <= max_sup; _delta *= 2) ; |
818 | 818 |
} else { |
819 | 819 |
// Without scaling |
820 | 820 |
_delta = 1; |
821 | 821 |
} |
822 | 822 |
|
823 | 823 |
return OPTIMAL; |
824 | 824 |
} |
825 | 825 |
|
826 | 826 |
ProblemType start() { |
827 | 827 |
// Execute the algorithm |
828 | 828 |
ProblemType pt; |
829 | 829 |
if (_delta > 1) |
830 | 830 |
pt = startWithScaling(); |
831 | 831 |
else |
832 | 832 |
pt = startWithoutScaling(); |
833 | 833 |
|
834 | 834 |
// Handle non-zero lower bounds |
835 | 835 |
if (_have_lower) { |
836 | 836 |
int limit = _first_out[_root]; |
837 | 837 |
for (int j = 0; j != limit; ++j) { |
838 | 838 |
if (!_forward[j]) _res_cap[j] += _lower[j]; |
839 | 839 |
} |
840 | 840 |
} |
841 | 841 |
|
842 | 842 |
// Shift potentials if necessary |
843 | 843 |
Cost pr = _pi[_root]; |
844 | 844 |
if (_sum_supply < 0 || pr > 0) { |
845 | 845 |
for (int i = 0; i != _node_num; ++i) { |
846 | 846 |
_pi[i] -= pr; |
847 | 847 |
} |
848 | 848 |
} |
849 | 849 |
|
850 | 850 |
return pt; |
851 | 851 |
} |
852 | 852 |
|
853 | 853 |
// Execute the capacity scaling algorithm |
854 | 854 |
ProblemType startWithScaling() { |
855 | 855 |
// Perform capacity scaling phases |
856 | 856 |
int s, t; |
857 | 857 |
ResidualDijkstra _dijkstra(*this); |
858 | 858 |
while (true) { |
859 | 859 |
// Saturate all arcs not satisfying the optimality condition |
860 | 860 |
int last_out; |
861 | 861 |
for (int u = 0; u != _node_num; ++u) { |
862 | 862 |
last_out = _sum_supply < 0 ? |
863 | 863 |
_first_out[u+1] : _first_out[u+1] - 1; |
864 | 864 |
for (int a = _first_out[u]; a != last_out; ++a) { |
865 | 865 |
int v = _target[a]; |
866 | 866 |
Cost c = _cost[a] + _pi[u] - _pi[v]; |
867 | 867 |
Value rc = _res_cap[a]; |
868 | 868 |
if (c < 0 && rc >= _delta) { |
869 | 869 |
_excess[u] -= rc; |
870 | 870 |
_excess[v] += rc; |
871 | 871 |
_res_cap[a] = 0; |
872 | 872 |
_res_cap[_reverse[a]] += rc; |
873 | 873 |
} |
874 | 874 |
} |
875 | 875 |
} |
876 | 876 |
|
877 | 877 |
// Find excess nodes and deficit nodes |
878 | 878 |
_excess_nodes.clear(); |
879 | 879 |
_deficit_nodes.clear(); |
880 | 880 |
for (int u = 0; u != _node_num; ++u) { |
881 | 881 |
Value ex = _excess[u]; |
882 | 882 |
if (ex >= _delta) _excess_nodes.push_back(u); |
883 | 883 |
if (ex <= -_delta) _deficit_nodes.push_back(u); |
884 | 884 |
} |
885 | 885 |
int next_node = 0, next_def_node = 0; |
886 | 886 |
|
887 | 887 |
// Find augmenting shortest paths |
888 | 888 |
while (next_node < int(_excess_nodes.size())) { |
889 | 889 |
// Check deficit nodes |
890 | 890 |
if (_delta > 1) { |
891 | 891 |
bool delta_deficit = false; |
892 | 892 |
for ( ; next_def_node < int(_deficit_nodes.size()); |
893 | 893 |
++next_def_node ) { |
894 | 894 |
if (_excess[_deficit_nodes[next_def_node]] <= -_delta) { |
895 | 895 |
delta_deficit = true; |
896 | 896 |
break; |
897 | 897 |
} |
898 | 898 |
} |
899 | 899 |
if (!delta_deficit) break; |
900 | 900 |
} |
901 | 901 |
|
902 | 902 |
// Run Dijkstra in the residual network |
903 | 903 |
s = _excess_nodes[next_node]; |
904 | 904 |
if ((t = _dijkstra.run(s, _delta)) == -1) { |
905 | 905 |
if (_delta > 1) { |
906 | 906 |
++next_node; |
907 | 907 |
continue; |
908 | 908 |
} |
909 | 909 |
return INFEASIBLE; |
910 | 910 |
} |
911 | 911 |
|
912 | 912 |
// Augment along a shortest path from s to t |
913 | 913 |
Value d = std::min(_excess[s], -_excess[t]); |
914 | 914 |
int u = t; |
915 | 915 |
int a; |
916 | 916 |
if (d > _delta) { |
917 | 917 |
while ((a = _pred[u]) != -1) { |
918 | 918 |
if (_res_cap[a] < d) d = _res_cap[a]; |
919 | 919 |
u = _source[a]; |
920 | 920 |
} |
921 | 921 |
} |
922 | 922 |
u = t; |
923 | 923 |
while ((a = _pred[u]) != -1) { |
924 | 924 |
_res_cap[a] -= d; |
925 | 925 |
_res_cap[_reverse[a]] += d; |
926 | 926 |
u = _source[a]; |
927 | 927 |
} |
928 | 928 |
_excess[s] -= d; |
929 | 929 |
_excess[t] += d; |
930 | 930 |
|
931 | 931 |
if (_excess[s] < _delta) ++next_node; |
932 | 932 |
} |
933 | 933 |
|
934 | 934 |
if (_delta == 1) break; |
935 | 935 |
_delta = _delta <= _factor ? 1 : _delta / _factor; |
936 | 936 |
} |
937 | 937 |
|
938 | 938 |
return OPTIMAL; |
939 | 939 |
} |
940 | 940 |
|
941 | 941 |
// Execute the successive shortest path algorithm |
942 | 942 |
ProblemType startWithoutScaling() { |
943 | 943 |
// Find excess nodes |
944 | 944 |
_excess_nodes.clear(); |
945 | 945 |
for (int i = 0; i != _node_num; ++i) { |
946 | 946 |
if (_excess[i] > 0) _excess_nodes.push_back(i); |
947 | 947 |
} |
948 | 948 |
if (_excess_nodes.size() == 0) return OPTIMAL; |
949 | 949 |
int next_node = 0; |
950 | 950 |
|
951 | 951 |
// Find shortest paths |
952 | 952 |
int s, t; |
953 | 953 |
ResidualDijkstra _dijkstra(*this); |
954 | 954 |
while ( _excess[_excess_nodes[next_node]] > 0 || |
955 | 955 |
++next_node < int(_excess_nodes.size()) ) |
956 | 956 |
{ |
957 | 957 |
// Run Dijkstra in the residual network |
958 | 958 |
s = _excess_nodes[next_node]; |
959 | 959 |
if ((t = _dijkstra.run(s)) == -1) return INFEASIBLE; |
960 | 960 |
|
961 | 961 |
// Augment along a shortest path from s to t |
962 | 962 |
Value d = std::min(_excess[s], -_excess[t]); |
963 | 963 |
int u = t; |
964 | 964 |
int a; |
965 | 965 |
if (d > 1) { |
966 | 966 |
while ((a = _pred[u]) != -1) { |
967 | 967 |
if (_res_cap[a] < d) d = _res_cap[a]; |
968 | 968 |
u = _source[a]; |
969 | 969 |
} |
970 | 970 |
} |
971 | 971 |
u = t; |
972 | 972 |
while ((a = _pred[u]) != -1) { |
973 | 973 |
_res_cap[a] -= d; |
974 | 974 |
_res_cap[_reverse[a]] += d; |
975 | 975 |
u = _source[a]; |
976 | 976 |
} |
977 | 977 |
_excess[s] -= d; |
978 | 978 |
_excess[t] += d; |
979 | 979 |
} |
980 | 980 |
|
981 | 981 |
return OPTIMAL; |
982 | 982 |
} |
983 | 983 |
|
984 | 984 |
}; //class CapacityScaling |
985 | 985 |
|
986 | 986 |
///@} |
987 | 987 |
|
988 | 988 |
} //namespace lemon |
989 | 989 |
|
990 | 990 |
#endif //LEMON_CAPACITY_SCALING_H |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#ifndef LEMON_CORE_H |
20 | 20 |
#define LEMON_CORE_H |
21 | 21 |
|
22 | 22 |
#include <vector> |
23 | 23 |
#include <algorithm> |
24 | 24 |
|
25 | 25 |
#include <lemon/config.h> |
26 | 26 |
#include <lemon/bits/enable_if.h> |
27 | 27 |
#include <lemon/bits/traits.h> |
28 | 28 |
#include <lemon/assert.h> |
29 | 29 |
|
30 | 30 |
// Disable the following warnings when compiling with MSVC: |
31 | 31 |
// C4250: 'class1' : inherits 'class2::member' via dominance |
32 | 32 |
// C4355: 'this' : used in base member initializer list |
33 | 33 |
// C4503: 'function' : decorated name length exceeded, name was truncated |
34 | 34 |
// C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning) |
35 | 35 |
// C4996: 'function': was declared deprecated |
36 | 36 |
#ifdef _MSC_VER |
37 | 37 |
#pragma warning( disable : 4250 4355 4503 4800 4996 ) |
38 | 38 |
#endif |
39 | 39 |
|
40 | 40 |
///\file |
41 | 41 |
///\brief LEMON core utilities. |
42 | 42 |
/// |
43 | 43 |
///This header file contains core utilities for LEMON. |
44 | 44 |
///It is automatically included by all graph types, therefore it usually |
45 | 45 |
///do not have to be included directly. |
46 | 46 |
|
47 | 47 |
namespace lemon { |
48 | 48 |
|
49 | 49 |
/// \brief Dummy type to make it easier to create invalid iterators. |
50 | 50 |
/// |
51 | 51 |
/// Dummy type to make it easier to create invalid iterators. |
52 | 52 |
/// See \ref INVALID for the usage. |
53 | 53 |
struct Invalid { |
54 | 54 |
public: |
55 | 55 |
bool operator==(Invalid) { return true; } |
56 | 56 |
bool operator!=(Invalid) { return false; } |
57 | 57 |
bool operator< (Invalid) { return false; } |
58 | 58 |
}; |
59 | 59 |
|
60 | 60 |
/// \brief Invalid iterators. |
61 | 61 |
/// |
62 | 62 |
/// \ref Invalid is a global type that converts to each iterator |
63 | 63 |
/// in such a way that the value of the target iterator will be invalid. |
64 | 64 |
#ifdef LEMON_ONLY_TEMPLATES |
65 | 65 |
const Invalid INVALID = Invalid(); |
66 | 66 |
#else |
67 | 67 |
extern const Invalid INVALID; |
68 | 68 |
#endif |
69 | 69 |
|
70 | 70 |
/// \addtogroup gutils |
71 | 71 |
/// @{ |
72 | 72 |
|
73 | 73 |
///Create convenience typedefs for the digraph types and iterators |
74 | 74 |
|
75 | 75 |
///This \c \#define creates convenient type definitions for the following |
76 | 76 |
///types of \c Digraph: \c Node, \c NodeIt, \c Arc, \c ArcIt, \c InArcIt, |
77 | 77 |
///\c OutArcIt, \c BoolNodeMap, \c IntNodeMap, \c DoubleNodeMap, |
78 | 78 |
///\c BoolArcMap, \c IntArcMap, \c DoubleArcMap. |
79 | 79 |
/// |
80 | 80 |
///\note If the graph type is a dependent type, ie. the graph type depend |
81 | 81 |
///on a template parameter, then use \c TEMPLATE_DIGRAPH_TYPEDEFS() |
82 | 82 |
///macro. |
83 | 83 |
#define DIGRAPH_TYPEDEFS(Digraph) \ |
84 | 84 |
typedef Digraph::Node Node; \ |
85 | 85 |
typedef Digraph::NodeIt NodeIt; \ |
86 | 86 |
typedef Digraph::Arc Arc; \ |
87 | 87 |
typedef Digraph::ArcIt ArcIt; \ |
88 | 88 |
typedef Digraph::InArcIt InArcIt; \ |
89 | 89 |
typedef Digraph::OutArcIt OutArcIt; \ |
90 | 90 |
typedef Digraph::NodeMap<bool> BoolNodeMap; \ |
91 | 91 |
typedef Digraph::NodeMap<int> IntNodeMap; \ |
92 | 92 |
typedef Digraph::NodeMap<double> DoubleNodeMap; \ |
93 | 93 |
typedef Digraph::ArcMap<bool> BoolArcMap; \ |
94 | 94 |
typedef Digraph::ArcMap<int> IntArcMap; \ |
95 | 95 |
typedef Digraph::ArcMap<double> DoubleArcMap |
96 | 96 |
|
97 | 97 |
///Create convenience typedefs for the digraph types and iterators |
98 | 98 |
|
99 | 99 |
///\see DIGRAPH_TYPEDEFS |
100 | 100 |
/// |
101 | 101 |
///\note Use this macro, if the graph type is a dependent type, |
102 | 102 |
///ie. the graph type depend on a template parameter. |
103 | 103 |
#define TEMPLATE_DIGRAPH_TYPEDEFS(Digraph) \ |
104 | 104 |
typedef typename Digraph::Node Node; \ |
105 | 105 |
typedef typename Digraph::NodeIt NodeIt; \ |
106 | 106 |
typedef typename Digraph::Arc Arc; \ |
107 | 107 |
typedef typename Digraph::ArcIt ArcIt; \ |
108 | 108 |
typedef typename Digraph::InArcIt InArcIt; \ |
109 | 109 |
typedef typename Digraph::OutArcIt OutArcIt; \ |
110 | 110 |
typedef typename Digraph::template NodeMap<bool> BoolNodeMap; \ |
111 | 111 |
typedef typename Digraph::template NodeMap<int> IntNodeMap; \ |
112 | 112 |
typedef typename Digraph::template NodeMap<double> DoubleNodeMap; \ |
113 | 113 |
typedef typename Digraph::template ArcMap<bool> BoolArcMap; \ |
114 | 114 |
typedef typename Digraph::template ArcMap<int> IntArcMap; \ |
115 | 115 |
typedef typename Digraph::template ArcMap<double> DoubleArcMap |
116 | 116 |
|
117 | 117 |
///Create convenience typedefs for the graph types and iterators |
118 | 118 |
|
119 | 119 |
///This \c \#define creates the same convenient type definitions as defined |
120 | 120 |
///by \ref DIGRAPH_TYPEDEFS(Graph) and six more, namely it creates |
121 | 121 |
///\c Edge, \c EdgeIt, \c IncEdgeIt, \c BoolEdgeMap, \c IntEdgeMap, |
122 | 122 |
///\c DoubleEdgeMap. |
123 | 123 |
/// |
124 | 124 |
///\note If the graph type is a dependent type, ie. the graph type depend |
125 | 125 |
///on a template parameter, then use \c TEMPLATE_GRAPH_TYPEDEFS() |
126 | 126 |
///macro. |
127 | 127 |
#define GRAPH_TYPEDEFS(Graph) \ |
128 | 128 |
DIGRAPH_TYPEDEFS(Graph); \ |
129 | 129 |
typedef Graph::Edge Edge; \ |
130 | 130 |
typedef Graph::EdgeIt EdgeIt; \ |
131 | 131 |
typedef Graph::IncEdgeIt IncEdgeIt; \ |
132 | 132 |
typedef Graph::EdgeMap<bool> BoolEdgeMap; \ |
133 | 133 |
typedef Graph::EdgeMap<int> IntEdgeMap; \ |
134 | 134 |
typedef Graph::EdgeMap<double> DoubleEdgeMap |
135 | 135 |
|
136 | 136 |
///Create convenience typedefs for the graph types and iterators |
137 | 137 |
|
138 | 138 |
///\see GRAPH_TYPEDEFS |
139 | 139 |
/// |
140 | 140 |
///\note Use this macro, if the graph type is a dependent type, |
141 | 141 |
///ie. the graph type depend on a template parameter. |
142 | 142 |
#define TEMPLATE_GRAPH_TYPEDEFS(Graph) \ |
143 | 143 |
TEMPLATE_DIGRAPH_TYPEDEFS(Graph); \ |
144 | 144 |
typedef typename Graph::Edge Edge; \ |
145 | 145 |
typedef typename Graph::EdgeIt EdgeIt; \ |
146 | 146 |
typedef typename Graph::IncEdgeIt IncEdgeIt; \ |
147 | 147 |
typedef typename Graph::template EdgeMap<bool> BoolEdgeMap; \ |
148 | 148 |
typedef typename Graph::template EdgeMap<int> IntEdgeMap; \ |
149 | 149 |
typedef typename Graph::template EdgeMap<double> DoubleEdgeMap |
150 | 150 |
|
151 | 151 |
/// \brief Function to count the items in a graph. |
152 | 152 |
/// |
153 | 153 |
/// This function counts the items (nodes, arcs etc.) in a graph. |
154 | 154 |
/// The complexity of the function is linear because |
155 | 155 |
/// it iterates on all of the items. |
156 | 156 |
template <typename Graph, typename Item> |
157 | 157 |
inline int countItems(const Graph& g) { |
158 | 158 |
typedef typename ItemSetTraits<Graph, Item>::ItemIt ItemIt; |
159 | 159 |
int num = 0; |
160 | 160 |
for (ItemIt it(g); it != INVALID; ++it) { |
161 | 161 |
++num; |
162 | 162 |
} |
163 | 163 |
return num; |
164 | 164 |
} |
165 | 165 |
|
166 | 166 |
// Node counting: |
167 | 167 |
|
168 | 168 |
namespace _core_bits { |
169 | 169 |
|
170 | 170 |
template <typename Graph, typename Enable = void> |
171 | 171 |
struct CountNodesSelector { |
172 | 172 |
static int count(const Graph &g) { |
173 | 173 |
return countItems<Graph, typename Graph::Node>(g); |
174 | 174 |
} |
175 | 175 |
}; |
176 | 176 |
|
177 | 177 |
template <typename Graph> |
178 | 178 |
struct CountNodesSelector< |
179 | 179 |
Graph, typename |
180 | 180 |
enable_if<typename Graph::NodeNumTag, void>::type> |
181 | 181 |
{ |
182 | 182 |
static int count(const Graph &g) { |
183 | 183 |
return g.nodeNum(); |
184 | 184 |
} |
185 | 185 |
}; |
186 | 186 |
} |
187 | 187 |
|
188 | 188 |
/// \brief Function to count the nodes in the graph. |
189 | 189 |
/// |
190 | 190 |
/// This function counts the nodes in the graph. |
191 | 191 |
/// The complexity of the function is <em>O</em>(<em>n</em>), but for some |
192 | 192 |
/// graph structures it is specialized to run in <em>O</em>(1). |
193 | 193 |
/// |
194 | 194 |
/// \note If the graph contains a \c nodeNum() member function and a |
195 | 195 |
/// \c NodeNumTag tag then this function calls directly the member |
196 | 196 |
/// function to query the cardinality of the node set. |
197 | 197 |
template <typename Graph> |
198 | 198 |
inline int countNodes(const Graph& g) { |
199 | 199 |
return _core_bits::CountNodesSelector<Graph>::count(g); |
200 | 200 |
} |
201 | 201 |
|
202 | 202 |
// Arc counting: |
203 | 203 |
|
204 | 204 |
namespace _core_bits { |
205 | 205 |
|
206 | 206 |
template <typename Graph, typename Enable = void> |
207 | 207 |
struct CountArcsSelector { |
208 | 208 |
static int count(const Graph &g) { |
209 | 209 |
return countItems<Graph, typename Graph::Arc>(g); |
210 | 210 |
} |
211 | 211 |
}; |
212 | 212 |
|
213 | 213 |
template <typename Graph> |
214 | 214 |
struct CountArcsSelector< |
215 | 215 |
Graph, |
216 | 216 |
typename enable_if<typename Graph::ArcNumTag, void>::type> |
217 | 217 |
{ |
218 | 218 |
static int count(const Graph &g) { |
219 | 219 |
return g.arcNum(); |
220 | 220 |
} |
221 | 221 |
}; |
222 | 222 |
} |
223 | 223 |
|
224 | 224 |
/// \brief Function to count the arcs in the graph. |
225 | 225 |
/// |
226 | 226 |
/// This function counts the arcs in the graph. |
227 | 227 |
/// The complexity of the function is <em>O</em>(<em>m</em>), but for some |
228 | 228 |
/// graph structures it is specialized to run in <em>O</em>(1). |
229 | 229 |
/// |
230 | 230 |
/// \note If the graph contains a \c arcNum() member function and a |
231 | 231 |
/// \c ArcNumTag tag then this function calls directly the member |
232 | 232 |
/// function to query the cardinality of the arc set. |
233 | 233 |
template <typename Graph> |
234 | 234 |
inline int countArcs(const Graph& g) { |
235 | 235 |
return _core_bits::CountArcsSelector<Graph>::count(g); |
236 | 236 |
} |
237 | 237 |
|
238 | 238 |
// Edge counting: |
239 | 239 |
|
240 | 240 |
namespace _core_bits { |
241 | 241 |
|
242 | 242 |
template <typename Graph, typename Enable = void> |
243 | 243 |
struct CountEdgesSelector { |
244 | 244 |
static int count(const Graph &g) { |
245 | 245 |
return countItems<Graph, typename Graph::Edge>(g); |
246 | 246 |
} |
247 | 247 |
}; |
248 | 248 |
|
249 | 249 |
template <typename Graph> |
250 | 250 |
struct CountEdgesSelector< |
251 | 251 |
Graph, |
252 | 252 |
typename enable_if<typename Graph::EdgeNumTag, void>::type> |
253 | 253 |
{ |
254 | 254 |
static int count(const Graph &g) { |
255 | 255 |
return g.edgeNum(); |
256 | 256 |
} |
257 | 257 |
}; |
258 | 258 |
} |
259 | 259 |
|
260 | 260 |
/// \brief Function to count the edges in the graph. |
261 | 261 |
/// |
262 | 262 |
/// This function counts the edges in the graph. |
263 | 263 |
/// The complexity of the function is <em>O</em>(<em>m</em>), but for some |
264 | 264 |
/// graph structures it is specialized to run in <em>O</em>(1). |
265 | 265 |
/// |
266 | 266 |
/// \note If the graph contains a \c edgeNum() member function and a |
267 | 267 |
/// \c EdgeNumTag tag then this function calls directly the member |
268 | 268 |
/// function to query the cardinality of the edge set. |
269 | 269 |
template <typename Graph> |
270 | 270 |
inline int countEdges(const Graph& g) { |
271 | 271 |
return _core_bits::CountEdgesSelector<Graph>::count(g); |
272 | 272 |
|
273 | 273 |
} |
274 | 274 |
|
275 | 275 |
|
276 | 276 |
template <typename Graph, typename DegIt> |
277 | 277 |
inline int countNodeDegree(const Graph& _g, const typename Graph::Node& _n) { |
278 | 278 |
int num = 0; |
279 | 279 |
for (DegIt it(_g, _n); it != INVALID; ++it) { |
280 | 280 |
++num; |
281 | 281 |
} |
282 | 282 |
return num; |
283 | 283 |
} |
284 | 284 |
|
285 | 285 |
/// \brief Function to count the number of the out-arcs from node \c n. |
286 | 286 |
/// |
287 | 287 |
/// This function counts the number of the out-arcs from node \c n |
288 | 288 |
/// in the graph \c g. |
289 | 289 |
template <typename Graph> |
290 | 290 |
inline int countOutArcs(const Graph& g, const typename Graph::Node& n) { |
291 | 291 |
return countNodeDegree<Graph, typename Graph::OutArcIt>(g, n); |
292 | 292 |
} |
293 | 293 |
|
294 | 294 |
/// \brief Function to count the number of the in-arcs to node \c n. |
295 | 295 |
/// |
296 | 296 |
/// This function counts the number of the in-arcs to node \c n |
297 | 297 |
/// in the graph \c g. |
298 | 298 |
template <typename Graph> |
299 | 299 |
inline int countInArcs(const Graph& g, const typename Graph::Node& n) { |
300 | 300 |
return countNodeDegree<Graph, typename Graph::InArcIt>(g, n); |
301 | 301 |
} |
302 | 302 |
|
303 | 303 |
/// \brief Function to count the number of the inc-edges to node \c n. |
304 | 304 |
/// |
305 | 305 |
/// This function counts the number of the inc-edges to node \c n |
306 | 306 |
/// in the undirected graph \c g. |
307 | 307 |
template <typename Graph> |
308 | 308 |
inline int countIncEdges(const Graph& g, const typename Graph::Node& n) { |
309 | 309 |
return countNodeDegree<Graph, typename Graph::IncEdgeIt>(g, n); |
310 | 310 |
} |
311 | 311 |
|
312 | 312 |
namespace _core_bits { |
313 | 313 |
|
314 | 314 |
template <typename Digraph, typename Item, typename RefMap> |
315 | 315 |
class MapCopyBase { |
316 | 316 |
public: |
317 | 317 |
virtual void copy(const Digraph& from, const RefMap& refMap) = 0; |
318 | 318 |
|
319 | 319 |
virtual ~MapCopyBase() {} |
320 | 320 |
}; |
321 | 321 |
|
322 | 322 |
template <typename Digraph, typename Item, typename RefMap, |
323 | 323 |
typename FromMap, typename ToMap> |
324 | 324 |
class MapCopy : public MapCopyBase<Digraph, Item, RefMap> { |
325 | 325 |
public: |
326 | 326 |
|
327 | 327 |
MapCopy(const FromMap& map, ToMap& tmap) |
328 | 328 |
: _map(map), _tmap(tmap) {} |
329 | 329 |
|
330 | 330 |
virtual void copy(const Digraph& digraph, const RefMap& refMap) { |
331 | 331 |
typedef typename ItemSetTraits<Digraph, Item>::ItemIt ItemIt; |
332 | 332 |
for (ItemIt it(digraph); it != INVALID; ++it) { |
333 | 333 |
_tmap.set(refMap[it], _map[it]); |
334 | 334 |
} |
335 | 335 |
} |
336 | 336 |
|
337 | 337 |
private: |
338 | 338 |
const FromMap& _map; |
339 | 339 |
ToMap& _tmap; |
340 | 340 |
}; |
341 | 341 |
|
342 | 342 |
template <typename Digraph, typename Item, typename RefMap, typename It> |
343 | 343 |
class ItemCopy : public MapCopyBase<Digraph, Item, RefMap> { |
344 | 344 |
public: |
345 | 345 |
|
346 | 346 |
ItemCopy(const Item& item, It& it) : _item(item), _it(it) {} |
347 | 347 |
|
348 | 348 |
virtual void copy(const Digraph&, const RefMap& refMap) { |
349 | 349 |
_it = refMap[_item]; |
350 | 350 |
} |
351 | 351 |
|
352 | 352 |
private: |
353 | 353 |
Item _item; |
354 | 354 |
It& _it; |
355 | 355 |
}; |
356 | 356 |
|
357 | 357 |
template <typename Digraph, typename Item, typename RefMap, typename Ref> |
358 | 358 |
class RefCopy : public MapCopyBase<Digraph, Item, RefMap> { |
359 | 359 |
public: |
360 | 360 |
|
361 | 361 |
RefCopy(Ref& map) : _map(map) {} |
362 | 362 |
|
363 | 363 |
virtual void copy(const Digraph& digraph, const RefMap& refMap) { |
364 | 364 |
typedef typename ItemSetTraits<Digraph, Item>::ItemIt ItemIt; |
365 | 365 |
for (ItemIt it(digraph); it != INVALID; ++it) { |
366 | 366 |
_map.set(it, refMap[it]); |
367 | 367 |
} |
368 | 368 |
} |
369 | 369 |
|
370 | 370 |
private: |
371 | 371 |
Ref& _map; |
372 | 372 |
}; |
373 | 373 |
|
374 | 374 |
template <typename Digraph, typename Item, typename RefMap, |
375 | 375 |
typename CrossRef> |
376 | 376 |
class CrossRefCopy : public MapCopyBase<Digraph, Item, RefMap> { |
377 | 377 |
public: |
378 | 378 |
|
379 | 379 |
CrossRefCopy(CrossRef& cmap) : _cmap(cmap) {} |
380 | 380 |
|
381 | 381 |
virtual void copy(const Digraph& digraph, const RefMap& refMap) { |
382 | 382 |
typedef typename ItemSetTraits<Digraph, Item>::ItemIt ItemIt; |
383 | 383 |
for (ItemIt it(digraph); it != INVALID; ++it) { |
384 | 384 |
_cmap.set(refMap[it], it); |
385 | 385 |
} |
386 | 386 |
} |
387 | 387 |
|
388 | 388 |
private: |
389 | 389 |
CrossRef& _cmap; |
390 | 390 |
}; |
391 | 391 |
|
392 | 392 |
template <typename Digraph, typename Enable = void> |
393 | 393 |
struct DigraphCopySelector { |
394 | 394 |
template <typename From, typename NodeRefMap, typename ArcRefMap> |
395 | 395 |
static void copy(const From& from, Digraph &to, |
396 | 396 |
NodeRefMap& nodeRefMap, ArcRefMap& arcRefMap) { |
397 | 397 |
to.clear(); |
398 | 398 |
for (typename From::NodeIt it(from); it != INVALID; ++it) { |
399 | 399 |
nodeRefMap[it] = to.addNode(); |
400 | 400 |
} |
401 | 401 |
for (typename From::ArcIt it(from); it != INVALID; ++it) { |
402 | 402 |
arcRefMap[it] = to.addArc(nodeRefMap[from.source(it)], |
403 | 403 |
nodeRefMap[from.target(it)]); |
404 | 404 |
} |
405 | 405 |
} |
406 | 406 |
}; |
407 | 407 |
|
408 | 408 |
template <typename Digraph> |
409 | 409 |
struct DigraphCopySelector< |
410 | 410 |
Digraph, |
411 | 411 |
typename enable_if<typename Digraph::BuildTag, void>::type> |
412 | 412 |
{ |
413 | 413 |
template <typename From, typename NodeRefMap, typename ArcRefMap> |
414 | 414 |
static void copy(const From& from, Digraph &to, |
415 | 415 |
NodeRefMap& nodeRefMap, ArcRefMap& arcRefMap) { |
416 | 416 |
to.build(from, nodeRefMap, arcRefMap); |
417 | 417 |
} |
418 | 418 |
}; |
419 | 419 |
|
420 | 420 |
template <typename Graph, typename Enable = void> |
421 | 421 |
struct GraphCopySelector { |
422 | 422 |
template <typename From, typename NodeRefMap, typename EdgeRefMap> |
423 | 423 |
static void copy(const From& from, Graph &to, |
424 | 424 |
NodeRefMap& nodeRefMap, EdgeRefMap& edgeRefMap) { |
425 | 425 |
to.clear(); |
426 | 426 |
for (typename From::NodeIt it(from); it != INVALID; ++it) { |
427 | 427 |
nodeRefMap[it] = to.addNode(); |
428 | 428 |
} |
429 | 429 |
for (typename From::EdgeIt it(from); it != INVALID; ++it) { |
430 | 430 |
edgeRefMap[it] = to.addEdge(nodeRefMap[from.u(it)], |
431 | 431 |
nodeRefMap[from.v(it)]); |
432 | 432 |
} |
433 | 433 |
} |
434 | 434 |
}; |
435 | 435 |
|
436 | 436 |
template <typename Graph> |
437 | 437 |
struct GraphCopySelector< |
438 | 438 |
Graph, |
439 | 439 |
typename enable_if<typename Graph::BuildTag, void>::type> |
440 | 440 |
{ |
441 | 441 |
template <typename From, typename NodeRefMap, typename EdgeRefMap> |
442 | 442 |
static void copy(const From& from, Graph &to, |
443 | 443 |
NodeRefMap& nodeRefMap, EdgeRefMap& edgeRefMap) { |
444 | 444 |
to.build(from, nodeRefMap, edgeRefMap); |
445 | 445 |
} |
446 | 446 |
}; |
447 | 447 |
|
448 | 448 |
} |
449 | 449 |
|
450 |
/// Check whether a graph is undirected. |
|
450 |
/// \brief Check whether a graph is undirected. |
|
451 | 451 |
/// |
452 | 452 |
/// This function returns \c true if the given graph is undirected. |
453 | 453 |
#ifdef DOXYGEN |
454 | 454 |
template <typename GR> |
455 | 455 |
bool undirected(const GR& g) { return false; } |
456 | 456 |
#else |
457 | 457 |
template <typename GR> |
458 | 458 |
typename enable_if<UndirectedTagIndicator<GR>, bool>::type |
459 | 459 |
undirected(const GR&) { |
460 | 460 |
return true; |
461 | 461 |
} |
462 | 462 |
template <typename GR> |
463 | 463 |
typename disable_if<UndirectedTagIndicator<GR>, bool>::type |
464 | 464 |
undirected(const GR&) { |
465 | 465 |
return false; |
466 | 466 |
} |
467 | 467 |
#endif |
468 | 468 |
|
469 | 469 |
/// \brief Class to copy a digraph. |
470 | 470 |
/// |
471 | 471 |
/// Class to copy a digraph to another digraph (duplicate a digraph). The |
472 | 472 |
/// simplest way of using it is through the \c digraphCopy() function. |
473 | 473 |
/// |
474 | 474 |
/// This class not only make a copy of a digraph, but it can create |
475 | 475 |
/// references and cross references between the nodes and arcs of |
476 | 476 |
/// the two digraphs, and it can copy maps to use with the newly created |
477 | 477 |
/// digraph. |
478 | 478 |
/// |
479 | 479 |
/// To make a copy from a digraph, first an instance of DigraphCopy |
480 | 480 |
/// should be created, then the data belongs to the digraph should |
481 | 481 |
/// assigned to copy. In the end, the \c run() member should be |
482 | 482 |
/// called. |
483 | 483 |
/// |
484 | 484 |
/// The next code copies a digraph with several data: |
485 | 485 |
///\code |
486 | 486 |
/// DigraphCopy<OrigGraph, NewGraph> cg(orig_graph, new_graph); |
487 | 487 |
/// // Create references for the nodes |
488 | 488 |
/// OrigGraph::NodeMap<NewGraph::Node> nr(orig_graph); |
489 | 489 |
/// cg.nodeRef(nr); |
490 | 490 |
/// // Create cross references (inverse) for the arcs |
491 | 491 |
/// NewGraph::ArcMap<OrigGraph::Arc> acr(new_graph); |
492 | 492 |
/// cg.arcCrossRef(acr); |
493 | 493 |
/// // Copy an arc map |
494 | 494 |
/// OrigGraph::ArcMap<double> oamap(orig_graph); |
495 | 495 |
/// NewGraph::ArcMap<double> namap(new_graph); |
496 | 496 |
/// cg.arcMap(oamap, namap); |
497 | 497 |
/// // Copy a node |
498 | 498 |
/// OrigGraph::Node on; |
499 | 499 |
/// NewGraph::Node nn; |
500 | 500 |
/// cg.node(on, nn); |
501 | 501 |
/// // Execute copying |
502 | 502 |
/// cg.run(); |
503 | 503 |
///\endcode |
504 | 504 |
template <typename From, typename To> |
505 | 505 |
class DigraphCopy { |
506 | 506 |
private: |
507 | 507 |
|
508 | 508 |
typedef typename From::Node Node; |
509 | 509 |
typedef typename From::NodeIt NodeIt; |
510 | 510 |
typedef typename From::Arc Arc; |
511 | 511 |
typedef typename From::ArcIt ArcIt; |
512 | 512 |
|
513 | 513 |
typedef typename To::Node TNode; |
514 | 514 |
typedef typename To::Arc TArc; |
515 | 515 |
|
516 | 516 |
typedef typename From::template NodeMap<TNode> NodeRefMap; |
517 | 517 |
typedef typename From::template ArcMap<TArc> ArcRefMap; |
518 | 518 |
|
519 | 519 |
public: |
520 | 520 |
|
521 | 521 |
/// \brief Constructor of DigraphCopy. |
522 | 522 |
/// |
523 | 523 |
/// Constructor of DigraphCopy for copying the content of the |
524 | 524 |
/// \c from digraph into the \c to digraph. |
525 | 525 |
DigraphCopy(const From& from, To& to) |
526 | 526 |
: _from(from), _to(to) {} |
527 | 527 |
|
528 | 528 |
/// \brief Destructor of DigraphCopy |
529 | 529 |
/// |
530 | 530 |
/// Destructor of DigraphCopy. |
531 | 531 |
~DigraphCopy() { |
532 | 532 |
for (int i = 0; i < int(_node_maps.size()); ++i) { |
533 | 533 |
delete _node_maps[i]; |
534 | 534 |
} |
535 | 535 |
for (int i = 0; i < int(_arc_maps.size()); ++i) { |
536 | 536 |
delete _arc_maps[i]; |
537 | 537 |
} |
538 | 538 |
|
539 | 539 |
} |
540 | 540 |
|
541 | 541 |
/// \brief Copy the node references into the given map. |
542 | 542 |
/// |
543 | 543 |
/// This function copies the node references into the given map. |
544 | 544 |
/// The parameter should be a map, whose key type is the Node type of |
545 | 545 |
/// the source digraph, while the value type is the Node type of the |
546 | 546 |
/// destination digraph. |
547 | 547 |
template <typename NodeRef> |
548 | 548 |
DigraphCopy& nodeRef(NodeRef& map) { |
549 | 549 |
_node_maps.push_back(new _core_bits::RefCopy<From, Node, |
550 | 550 |
NodeRefMap, NodeRef>(map)); |
551 | 551 |
return *this; |
552 | 552 |
} |
553 | 553 |
|
554 | 554 |
/// \brief Copy the node cross references into the given map. |
555 | 555 |
/// |
556 | 556 |
/// This function copies the node cross references (reverse references) |
557 | 557 |
/// into the given map. The parameter should be a map, whose key type |
558 | 558 |
/// is the Node type of the destination digraph, while the value type is |
559 | 559 |
/// the Node type of the source digraph. |
560 | 560 |
template <typename NodeCrossRef> |
561 | 561 |
DigraphCopy& nodeCrossRef(NodeCrossRef& map) { |
562 | 562 |
_node_maps.push_back(new _core_bits::CrossRefCopy<From, Node, |
563 | 563 |
NodeRefMap, NodeCrossRef>(map)); |
564 | 564 |
return *this; |
565 | 565 |
} |
566 | 566 |
|
567 | 567 |
/// \brief Make a copy of the given node map. |
568 | 568 |
/// |
569 | 569 |
/// This function makes a copy of the given node map for the newly |
570 | 570 |
/// created digraph. |
571 | 571 |
/// The key type of the new map \c tmap should be the Node type of the |
572 | 572 |
/// destination digraph, and the key type of the original map \c map |
573 | 573 |
/// should be the Node type of the source digraph. |
574 | 574 |
template <typename FromMap, typename ToMap> |
575 | 575 |
DigraphCopy& nodeMap(const FromMap& map, ToMap& tmap) { |
576 | 576 |
_node_maps.push_back(new _core_bits::MapCopy<From, Node, |
577 | 577 |
NodeRefMap, FromMap, ToMap>(map, tmap)); |
578 | 578 |
return *this; |
579 | 579 |
} |
580 | 580 |
|
581 | 581 |
/// \brief Make a copy of the given node. |
582 | 582 |
/// |
583 | 583 |
/// This function makes a copy of the given node. |
584 | 584 |
DigraphCopy& node(const Node& node, TNode& tnode) { |
585 | 585 |
_node_maps.push_back(new _core_bits::ItemCopy<From, Node, |
586 | 586 |
NodeRefMap, TNode>(node, tnode)); |
587 | 587 |
return *this; |
588 | 588 |
} |
589 | 589 |
|
590 | 590 |
/// \brief Copy the arc references into the given map. |
591 | 591 |
/// |
592 | 592 |
/// This function copies the arc references into the given map. |
593 | 593 |
/// The parameter should be a map, whose key type is the Arc type of |
594 | 594 |
/// the source digraph, while the value type is the Arc type of the |
595 | 595 |
/// destination digraph. |
596 | 596 |
template <typename ArcRef> |
597 | 597 |
DigraphCopy& arcRef(ArcRef& map) { |
598 | 598 |
_arc_maps.push_back(new _core_bits::RefCopy<From, Arc, |
599 | 599 |
ArcRefMap, ArcRef>(map)); |
600 | 600 |
return *this; |
601 | 601 |
} |
602 | 602 |
|
603 | 603 |
/// \brief Copy the arc cross references into the given map. |
604 | 604 |
/// |
605 | 605 |
/// This function copies the arc cross references (reverse references) |
606 | 606 |
/// into the given map. The parameter should be a map, whose key type |
607 | 607 |
/// is the Arc type of the destination digraph, while the value type is |
608 | 608 |
/// the Arc type of the source digraph. |
609 | 609 |
template <typename ArcCrossRef> |
610 | 610 |
DigraphCopy& arcCrossRef(ArcCrossRef& map) { |
611 | 611 |
_arc_maps.push_back(new _core_bits::CrossRefCopy<From, Arc, |
612 | 612 |
ArcRefMap, ArcCrossRef>(map)); |
613 | 613 |
return *this; |
614 | 614 |
} |
615 | 615 |
|
616 | 616 |
/// \brief Make a copy of the given arc map. |
617 | 617 |
/// |
618 | 618 |
/// This function makes a copy of the given arc map for the newly |
619 | 619 |
/// created digraph. |
620 | 620 |
/// The key type of the new map \c tmap should be the Arc type of the |
621 | 621 |
/// destination digraph, and the key type of the original map \c map |
622 | 622 |
/// should be the Arc type of the source digraph. |
623 | 623 |
template <typename FromMap, typename ToMap> |
624 | 624 |
DigraphCopy& arcMap(const FromMap& map, ToMap& tmap) { |
625 | 625 |
_arc_maps.push_back(new _core_bits::MapCopy<From, Arc, |
626 | 626 |
ArcRefMap, FromMap, ToMap>(map, tmap)); |
627 | 627 |
return *this; |
628 | 628 |
} |
629 | 629 |
|
630 | 630 |
/// \brief Make a copy of the given arc. |
631 | 631 |
/// |
632 | 632 |
/// This function makes a copy of the given arc. |
633 | 633 |
DigraphCopy& arc(const Arc& arc, TArc& tarc) { |
634 | 634 |
_arc_maps.push_back(new _core_bits::ItemCopy<From, Arc, |
635 | 635 |
ArcRefMap, TArc>(arc, tarc)); |
636 | 636 |
return *this; |
637 | 637 |
} |
638 | 638 |
|
639 | 639 |
/// \brief Execute copying. |
640 | 640 |
/// |
641 | 641 |
/// This function executes the copying of the digraph along with the |
642 | 642 |
/// copying of the assigned data. |
643 | 643 |
void run() { |
644 | 644 |
NodeRefMap nodeRefMap(_from); |
645 | 645 |
ArcRefMap arcRefMap(_from); |
646 | 646 |
_core_bits::DigraphCopySelector<To>:: |
647 | 647 |
copy(_from, _to, nodeRefMap, arcRefMap); |
648 | 648 |
for (int i = 0; i < int(_node_maps.size()); ++i) { |
649 | 649 |
_node_maps[i]->copy(_from, nodeRefMap); |
650 | 650 |
} |
651 | 651 |
for (int i = 0; i < int(_arc_maps.size()); ++i) { |
652 | 652 |
_arc_maps[i]->copy(_from, arcRefMap); |
653 | 653 |
} |
654 | 654 |
} |
655 | 655 |
|
656 | 656 |
protected: |
657 | 657 |
|
658 | 658 |
const From& _from; |
659 | 659 |
To& _to; |
660 | 660 |
|
661 | 661 |
std::vector<_core_bits::MapCopyBase<From, Node, NodeRefMap>* > |
662 | 662 |
_node_maps; |
663 | 663 |
|
664 | 664 |
std::vector<_core_bits::MapCopyBase<From, Arc, ArcRefMap>* > |
665 | 665 |
_arc_maps; |
666 | 666 |
|
667 | 667 |
}; |
668 | 668 |
|
669 | 669 |
/// \brief Copy a digraph to another digraph. |
670 | 670 |
/// |
671 | 671 |
/// This function copies a digraph to another digraph. |
672 | 672 |
/// The complete usage of it is detailed in the DigraphCopy class, but |
673 | 673 |
/// a short example shows a basic work: |
674 | 674 |
///\code |
675 | 675 |
/// digraphCopy(src, trg).nodeRef(nr).arcCrossRef(acr).run(); |
676 | 676 |
///\endcode |
677 | 677 |
/// |
678 | 678 |
/// After the copy the \c nr map will contain the mapping from the |
679 | 679 |
/// nodes of the \c from digraph to the nodes of the \c to digraph and |
680 | 680 |
/// \c acr will contain the mapping from the arcs of the \c to digraph |
681 | 681 |
/// to the arcs of the \c from digraph. |
682 | 682 |
/// |
683 | 683 |
/// \see DigraphCopy |
684 | 684 |
template <typename From, typename To> |
685 | 685 |
DigraphCopy<From, To> digraphCopy(const From& from, To& to) { |
686 | 686 |
return DigraphCopy<From, To>(from, to); |
687 | 687 |
} |
688 | 688 |
|
689 | 689 |
/// \brief Class to copy a graph. |
690 | 690 |
/// |
691 | 691 |
/// Class to copy a graph to another graph (duplicate a graph). The |
692 | 692 |
/// simplest way of using it is through the \c graphCopy() function. |
693 | 693 |
/// |
694 | 694 |
/// This class not only make a copy of a graph, but it can create |
695 | 695 |
/// references and cross references between the nodes, edges and arcs of |
696 | 696 |
/// the two graphs, and it can copy maps for using with the newly created |
697 | 697 |
/// graph. |
698 | 698 |
/// |
699 | 699 |
/// To make a copy from a graph, first an instance of GraphCopy |
700 | 700 |
/// should be created, then the data belongs to the graph should |
701 | 701 |
/// assigned to copy. In the end, the \c run() member should be |
702 | 702 |
/// called. |
703 | 703 |
/// |
704 | 704 |
/// The next code copies a graph with several data: |
705 | 705 |
///\code |
706 | 706 |
/// GraphCopy<OrigGraph, NewGraph> cg(orig_graph, new_graph); |
707 | 707 |
/// // Create references for the nodes |
708 | 708 |
/// OrigGraph::NodeMap<NewGraph::Node> nr(orig_graph); |
709 | 709 |
/// cg.nodeRef(nr); |
710 | 710 |
/// // Create cross references (inverse) for the edges |
711 | 711 |
/// NewGraph::EdgeMap<OrigGraph::Edge> ecr(new_graph); |
712 | 712 |
/// cg.edgeCrossRef(ecr); |
713 | 713 |
/// // Copy an edge map |
714 | 714 |
/// OrigGraph::EdgeMap<double> oemap(orig_graph); |
715 | 715 |
/// NewGraph::EdgeMap<double> nemap(new_graph); |
716 | 716 |
/// cg.edgeMap(oemap, nemap); |
717 | 717 |
/// // Copy a node |
718 | 718 |
/// OrigGraph::Node on; |
719 | 719 |
/// NewGraph::Node nn; |
720 | 720 |
/// cg.node(on, nn); |
721 | 721 |
/// // Execute copying |
722 | 722 |
/// cg.run(); |
723 | 723 |
///\endcode |
724 | 724 |
template <typename From, typename To> |
725 | 725 |
class GraphCopy { |
726 | 726 |
private: |
727 | 727 |
|
728 | 728 |
typedef typename From::Node Node; |
729 | 729 |
typedef typename From::NodeIt NodeIt; |
730 | 730 |
typedef typename From::Arc Arc; |
731 | 731 |
typedef typename From::ArcIt ArcIt; |
732 | 732 |
typedef typename From::Edge Edge; |
733 | 733 |
typedef typename From::EdgeIt EdgeIt; |
734 | 734 |
|
735 | 735 |
typedef typename To::Node TNode; |
736 | 736 |
typedef typename To::Arc TArc; |
737 | 737 |
typedef typename To::Edge TEdge; |
738 | 738 |
|
739 | 739 |
typedef typename From::template NodeMap<TNode> NodeRefMap; |
740 | 740 |
typedef typename From::template EdgeMap<TEdge> EdgeRefMap; |
741 | 741 |
|
742 | 742 |
struct ArcRefMap { |
743 | 743 |
ArcRefMap(const From& from, const To& to, |
744 | 744 |
const EdgeRefMap& edge_ref, const NodeRefMap& node_ref) |
745 | 745 |
: _from(from), _to(to), |
746 | 746 |
_edge_ref(edge_ref), _node_ref(node_ref) {} |
747 | 747 |
|
748 | 748 |
typedef typename From::Arc Key; |
749 | 749 |
typedef typename To::Arc Value; |
750 | 750 |
|
751 | 751 |
Value operator[](const Key& key) const { |
752 | 752 |
bool forward = _from.u(key) != _from.v(key) ? |
753 | 753 |
_node_ref[_from.source(key)] == |
754 | 754 |
_to.source(_to.direct(_edge_ref[key], true)) : |
755 | 755 |
_from.direction(key); |
756 | 756 |
return _to.direct(_edge_ref[key], forward); |
757 | 757 |
} |
758 | 758 |
|
759 | 759 |
const From& _from; |
760 | 760 |
const To& _to; |
761 | 761 |
const EdgeRefMap& _edge_ref; |
762 | 762 |
const NodeRefMap& _node_ref; |
763 | 763 |
}; |
764 | 764 |
|
765 | 765 |
public: |
766 | 766 |
|
767 | 767 |
/// \brief Constructor of GraphCopy. |
768 | 768 |
/// |
769 | 769 |
/// Constructor of GraphCopy for copying the content of the |
770 | 770 |
/// \c from graph into the \c to graph. |
771 | 771 |
GraphCopy(const From& from, To& to) |
772 | 772 |
: _from(from), _to(to) {} |
773 | 773 |
|
774 | 774 |
/// \brief Destructor of GraphCopy |
775 | 775 |
/// |
776 | 776 |
/// Destructor of GraphCopy. |
777 | 777 |
~GraphCopy() { |
778 | 778 |
for (int i = 0; i < int(_node_maps.size()); ++i) { |
779 | 779 |
delete _node_maps[i]; |
780 | 780 |
} |
781 | 781 |
for (int i = 0; i < int(_arc_maps.size()); ++i) { |
782 | 782 |
delete _arc_maps[i]; |
783 | 783 |
} |
784 | 784 |
for (int i = 0; i < int(_edge_maps.size()); ++i) { |
785 | 785 |
delete _edge_maps[i]; |
786 | 786 |
} |
787 | 787 |
} |
788 | 788 |
|
789 | 789 |
/// \brief Copy the node references into the given map. |
790 | 790 |
/// |
791 | 791 |
/// This function copies the node references into the given map. |
792 | 792 |
/// The parameter should be a map, whose key type is the Node type of |
793 | 793 |
/// the source graph, while the value type is the Node type of the |
794 | 794 |
/// destination graph. |
795 | 795 |
template <typename NodeRef> |
796 | 796 |
GraphCopy& nodeRef(NodeRef& map) { |
797 | 797 |
_node_maps.push_back(new _core_bits::RefCopy<From, Node, |
798 | 798 |
NodeRefMap, NodeRef>(map)); |
799 | 799 |
return *this; |
800 | 800 |
} |
801 | 801 |
|
802 | 802 |
/// \brief Copy the node cross references into the given map. |
803 | 803 |
/// |
804 | 804 |
/// This function copies the node cross references (reverse references) |
805 | 805 |
/// into the given map. The parameter should be a map, whose key type |
806 | 806 |
/// is the Node type of the destination graph, while the value type is |
807 | 807 |
/// the Node type of the source graph. |
808 | 808 |
template <typename NodeCrossRef> |
809 | 809 |
GraphCopy& nodeCrossRef(NodeCrossRef& map) { |
810 | 810 |
_node_maps.push_back(new _core_bits::CrossRefCopy<From, Node, |
811 | 811 |
NodeRefMap, NodeCrossRef>(map)); |
812 | 812 |
return *this; |
813 | 813 |
} |
814 | 814 |
|
815 | 815 |
/// \brief Make a copy of the given node map. |
816 | 816 |
/// |
817 | 817 |
/// This function makes a copy of the given node map for the newly |
818 | 818 |
/// created graph. |
819 | 819 |
/// The key type of the new map \c tmap should be the Node type of the |
820 | 820 |
/// destination graph, and the key type of the original map \c map |
821 | 821 |
/// should be the Node type of the source graph. |
822 | 822 |
template <typename FromMap, typename ToMap> |
823 | 823 |
GraphCopy& nodeMap(const FromMap& map, ToMap& tmap) { |
824 | 824 |
_node_maps.push_back(new _core_bits::MapCopy<From, Node, |
825 | 825 |
NodeRefMap, FromMap, ToMap>(map, tmap)); |
826 | 826 |
return *this; |
827 | 827 |
} |
828 | 828 |
|
829 | 829 |
/// \brief Make a copy of the given node. |
830 | 830 |
/// |
831 | 831 |
/// This function makes a copy of the given node. |
832 | 832 |
GraphCopy& node(const Node& node, TNode& tnode) { |
833 | 833 |
_node_maps.push_back(new _core_bits::ItemCopy<From, Node, |
834 | 834 |
NodeRefMap, TNode>(node, tnode)); |
835 | 835 |
return *this; |
836 | 836 |
} |
837 | 837 |
|
838 | 838 |
/// \brief Copy the arc references into the given map. |
839 | 839 |
/// |
840 | 840 |
/// This function copies the arc references into the given map. |
841 | 841 |
/// The parameter should be a map, whose key type is the Arc type of |
842 | 842 |
/// the source graph, while the value type is the Arc type of the |
843 | 843 |
/// destination graph. |
844 | 844 |
template <typename ArcRef> |
845 | 845 |
GraphCopy& arcRef(ArcRef& map) { |
846 | 846 |
_arc_maps.push_back(new _core_bits::RefCopy<From, Arc, |
847 | 847 |
ArcRefMap, ArcRef>(map)); |
848 | 848 |
return *this; |
849 | 849 |
} |
850 | 850 |
|
851 | 851 |
/// \brief Copy the arc cross references into the given map. |
852 | 852 |
/// |
853 | 853 |
/// This function copies the arc cross references (reverse references) |
854 | 854 |
/// into the given map. The parameter should be a map, whose key type |
855 | 855 |
/// is the Arc type of the destination graph, while the value type is |
856 | 856 |
/// the Arc type of the source graph. |
857 | 857 |
template <typename ArcCrossRef> |
858 | 858 |
GraphCopy& arcCrossRef(ArcCrossRef& map) { |
859 | 859 |
_arc_maps.push_back(new _core_bits::CrossRefCopy<From, Arc, |
860 | 860 |
ArcRefMap, ArcCrossRef>(map)); |
861 | 861 |
return *this; |
862 | 862 |
} |
863 | 863 |
|
864 | 864 |
/// \brief Make a copy of the given arc map. |
865 | 865 |
/// |
866 | 866 |
/// This function makes a copy of the given arc map for the newly |
867 | 867 |
/// created graph. |
868 | 868 |
/// The key type of the new map \c tmap should be the Arc type of the |
869 | 869 |
/// destination graph, and the key type of the original map \c map |
870 | 870 |
/// should be the Arc type of the source graph. |
871 | 871 |
template <typename FromMap, typename ToMap> |
872 | 872 |
GraphCopy& arcMap(const FromMap& map, ToMap& tmap) { |
873 | 873 |
_arc_maps.push_back(new _core_bits::MapCopy<From, Arc, |
874 | 874 |
ArcRefMap, FromMap, ToMap>(map, tmap)); |
875 | 875 |
return *this; |
876 | 876 |
} |
877 | 877 |
|
878 | 878 |
/// \brief Make a copy of the given arc. |
879 | 879 |
/// |
880 | 880 |
/// This function makes a copy of the given arc. |
881 | 881 |
GraphCopy& arc(const Arc& arc, TArc& tarc) { |
882 | 882 |
_arc_maps.push_back(new _core_bits::ItemCopy<From, Arc, |
883 | 883 |
ArcRefMap, TArc>(arc, tarc)); |
884 | 884 |
return *this; |
885 | 885 |
} |
886 | 886 |
|
887 | 887 |
/// \brief Copy the edge references into the given map. |
888 | 888 |
/// |
889 | 889 |
/// This function copies the edge references into the given map. |
890 | 890 |
/// The parameter should be a map, whose key type is the Edge type of |
891 | 891 |
/// the source graph, while the value type is the Edge type of the |
892 | 892 |
/// destination graph. |
893 | 893 |
template <typename EdgeRef> |
894 | 894 |
GraphCopy& edgeRef(EdgeRef& map) { |
895 | 895 |
_edge_maps.push_back(new _core_bits::RefCopy<From, Edge, |
896 | 896 |
EdgeRefMap, EdgeRef>(map)); |
897 | 897 |
return *this; |
898 | 898 |
} |
899 | 899 |
|
900 | 900 |
/// \brief Copy the edge cross references into the given map. |
901 | 901 |
/// |
902 | 902 |
/// This function copies the edge cross references (reverse references) |
903 | 903 |
/// into the given map. The parameter should be a map, whose key type |
904 | 904 |
/// is the Edge type of the destination graph, while the value type is |
905 | 905 |
/// the Edge type of the source graph. |
906 | 906 |
template <typename EdgeCrossRef> |
907 | 907 |
GraphCopy& edgeCrossRef(EdgeCrossRef& map) { |
908 | 908 |
_edge_maps.push_back(new _core_bits::CrossRefCopy<From, |
909 | 909 |
Edge, EdgeRefMap, EdgeCrossRef>(map)); |
910 | 910 |
return *this; |
911 | 911 |
} |
912 | 912 |
|
913 | 913 |
/// \brief Make a copy of the given edge map. |
914 | 914 |
/// |
915 | 915 |
/// This function makes a copy of the given edge map for the newly |
916 | 916 |
/// created graph. |
917 | 917 |
/// The key type of the new map \c tmap should be the Edge type of the |
918 | 918 |
/// destination graph, and the key type of the original map \c map |
919 | 919 |
/// should be the Edge type of the source graph. |
920 | 920 |
template <typename FromMap, typename ToMap> |
921 | 921 |
GraphCopy& edgeMap(const FromMap& map, ToMap& tmap) { |
922 | 922 |
_edge_maps.push_back(new _core_bits::MapCopy<From, Edge, |
923 | 923 |
EdgeRefMap, FromMap, ToMap>(map, tmap)); |
924 | 924 |
return *this; |
925 | 925 |
} |
926 | 926 |
|
927 | 927 |
/// \brief Make a copy of the given edge. |
928 | 928 |
/// |
929 | 929 |
/// This function makes a copy of the given edge. |
930 | 930 |
GraphCopy& edge(const Edge& edge, TEdge& tedge) { |
931 | 931 |
_edge_maps.push_back(new _core_bits::ItemCopy<From, Edge, |
932 | 932 |
EdgeRefMap, TEdge>(edge, tedge)); |
933 | 933 |
return *this; |
934 | 934 |
} |
935 | 935 |
|
936 | 936 |
/// \brief Execute copying. |
937 | 937 |
/// |
938 | 938 |
/// This function executes the copying of the graph along with the |
939 | 939 |
/// copying of the assigned data. |
940 | 940 |
void run() { |
941 | 941 |
NodeRefMap nodeRefMap(_from); |
942 | 942 |
EdgeRefMap edgeRefMap(_from); |
943 | 943 |
ArcRefMap arcRefMap(_from, _to, edgeRefMap, nodeRefMap); |
944 | 944 |
_core_bits::GraphCopySelector<To>:: |
945 | 945 |
copy(_from, _to, nodeRefMap, edgeRefMap); |
946 | 946 |
for (int i = 0; i < int(_node_maps.size()); ++i) { |
947 | 947 |
_node_maps[i]->copy(_from, nodeRefMap); |
948 | 948 |
} |
949 | 949 |
for (int i = 0; i < int(_edge_maps.size()); ++i) { |
950 | 950 |
_edge_maps[i]->copy(_from, edgeRefMap); |
951 | 951 |
} |
952 | 952 |
for (int i = 0; i < int(_arc_maps.size()); ++i) { |
953 | 953 |
_arc_maps[i]->copy(_from, arcRefMap); |
954 | 954 |
} |
955 | 955 |
} |
956 | 956 |
|
957 | 957 |
private: |
958 | 958 |
|
959 | 959 |
const From& _from; |
960 | 960 |
To& _to; |
961 | 961 |
|
962 | 962 |
std::vector<_core_bits::MapCopyBase<From, Node, NodeRefMap>* > |
963 | 963 |
_node_maps; |
964 | 964 |
|
965 | 965 |
std::vector<_core_bits::MapCopyBase<From, Arc, ArcRefMap>* > |
966 | 966 |
_arc_maps; |
967 | 967 |
|
968 | 968 |
std::vector<_core_bits::MapCopyBase<From, Edge, EdgeRefMap>* > |
969 | 969 |
_edge_maps; |
970 | 970 |
|
971 | 971 |
}; |
972 | 972 |
|
973 | 973 |
/// \brief Copy a graph to another graph. |
974 | 974 |
/// |
975 | 975 |
/// This function copies a graph to another graph. |
976 | 976 |
/// The complete usage of it is detailed in the GraphCopy class, |
977 | 977 |
/// but a short example shows a basic work: |
978 | 978 |
///\code |
979 | 979 |
/// graphCopy(src, trg).nodeRef(nr).edgeCrossRef(ecr).run(); |
980 | 980 |
///\endcode |
981 | 981 |
/// |
982 | 982 |
/// After the copy the \c nr map will contain the mapping from the |
983 | 983 |
/// nodes of the \c from graph to the nodes of the \c to graph and |
984 | 984 |
/// \c ecr will contain the mapping from the edges of the \c to graph |
985 | 985 |
/// to the edges of the \c from graph. |
986 | 986 |
/// |
987 | 987 |
/// \see GraphCopy |
988 | 988 |
template <typename From, typename To> |
989 | 989 |
GraphCopy<From, To> |
990 | 990 |
graphCopy(const From& from, To& to) { |
991 | 991 |
return GraphCopy<From, To>(from, to); |
992 | 992 |
} |
993 | 993 |
|
994 | 994 |
namespace _core_bits { |
995 | 995 |
|
996 | 996 |
template <typename Graph, typename Enable = void> |
997 | 997 |
struct FindArcSelector { |
998 | 998 |
typedef typename Graph::Node Node; |
999 | 999 |
typedef typename Graph::Arc Arc; |
1000 | 1000 |
static Arc find(const Graph &g, Node u, Node v, Arc e) { |
1001 | 1001 |
if (e == INVALID) { |
1002 | 1002 |
g.firstOut(e, u); |
1003 | 1003 |
} else { |
1004 | 1004 |
g.nextOut(e); |
1005 | 1005 |
} |
1006 | 1006 |
while (e != INVALID && g.target(e) != v) { |
1007 | 1007 |
g.nextOut(e); |
1008 | 1008 |
} |
1009 | 1009 |
return e; |
1010 | 1010 |
} |
1011 | 1011 |
}; |
1012 | 1012 |
|
1013 | 1013 |
template <typename Graph> |
1014 | 1014 |
struct FindArcSelector< |
1015 | 1015 |
Graph, |
1016 | 1016 |
typename enable_if<typename Graph::FindArcTag, void>::type> |
1017 | 1017 |
{ |
1018 | 1018 |
typedef typename Graph::Node Node; |
1019 | 1019 |
typedef typename Graph::Arc Arc; |
1020 | 1020 |
static Arc find(const Graph &g, Node u, Node v, Arc prev) { |
1021 | 1021 |
return g.findArc(u, v, prev); |
1022 | 1022 |
} |
1023 | 1023 |
}; |
1024 | 1024 |
} |
1025 | 1025 |
|
1026 | 1026 |
/// \brief Find an arc between two nodes of a digraph. |
1027 | 1027 |
/// |
1028 | 1028 |
/// This function finds an arc from node \c u to node \c v in the |
1029 | 1029 |
/// digraph \c g. |
1030 | 1030 |
/// |
1031 | 1031 |
/// If \c prev is \ref INVALID (this is the default value), then |
1032 | 1032 |
/// it finds the first arc from \c u to \c v. Otherwise it looks for |
1033 | 1033 |
/// the next arc from \c u to \c v after \c prev. |
1034 | 1034 |
/// \return The found arc or \ref INVALID if there is no such an arc. |
1035 | 1035 |
/// |
1036 | 1036 |
/// Thus you can iterate through each arc from \c u to \c v as it follows. |
1037 | 1037 |
///\code |
1038 | 1038 |
/// for(Arc e = findArc(g,u,v); e != INVALID; e = findArc(g,u,v,e)) { |
1039 | 1039 |
/// ... |
1040 | 1040 |
/// } |
1041 | 1041 |
///\endcode |
1042 | 1042 |
/// |
1043 | 1043 |
/// \note \ref ConArcIt provides iterator interface for the same |
1044 | 1044 |
/// functionality. |
1045 | 1045 |
/// |
1046 | 1046 |
///\sa ConArcIt |
1047 | 1047 |
///\sa ArcLookUp, AllArcLookUp, DynArcLookUp |
1048 | 1048 |
template <typename Graph> |
1049 | 1049 |
inline typename Graph::Arc |
1050 | 1050 |
findArc(const Graph &g, typename Graph::Node u, typename Graph::Node v, |
1051 | 1051 |
typename Graph::Arc prev = INVALID) { |
1052 | 1052 |
return _core_bits::FindArcSelector<Graph>::find(g, u, v, prev); |
1053 | 1053 |
} |
1054 | 1054 |
|
1055 | 1055 |
/// \brief Iterator for iterating on parallel arcs connecting the same nodes. |
1056 | 1056 |
/// |
1057 | 1057 |
/// Iterator for iterating on parallel arcs connecting the same nodes. It is |
1058 | 1058 |
/// a higher level interface for the \ref findArc() function. You can |
1059 | 1059 |
/// use it the following way: |
1060 | 1060 |
///\code |
1061 | 1061 |
/// for (ConArcIt<Graph> it(g, src, trg); it != INVALID; ++it) { |
1062 | 1062 |
/// ... |
1063 | 1063 |
/// } |
1064 | 1064 |
///\endcode |
1065 | 1065 |
/// |
1066 | 1066 |
///\sa findArc() |
1067 | 1067 |
///\sa ArcLookUp, AllArcLookUp, DynArcLookUp |
1068 | 1068 |
template <typename GR> |
1069 | 1069 |
class ConArcIt : public GR::Arc { |
1070 | 1070 |
typedef typename GR::Arc Parent; |
1071 | 1071 |
|
1072 | 1072 |
public: |
1073 | 1073 |
|
1074 | 1074 |
typedef typename GR::Arc Arc; |
1075 | 1075 |
typedef typename GR::Node Node; |
1076 | 1076 |
|
1077 | 1077 |
/// \brief Constructor. |
1078 | 1078 |
/// |
1079 | 1079 |
/// Construct a new ConArcIt iterating on the arcs that |
1080 | 1080 |
/// connects nodes \c u and \c v. |
1081 | 1081 |
ConArcIt(const GR& g, Node u, Node v) : _graph(g) { |
1082 | 1082 |
Parent::operator=(findArc(_graph, u, v)); |
1083 | 1083 |
} |
1084 | 1084 |
|
1085 | 1085 |
/// \brief Constructor. |
1086 | 1086 |
/// |
1087 | 1087 |
/// Construct a new ConArcIt that continues the iterating from arc \c a. |
1088 | 1088 |
ConArcIt(const GR& g, Arc a) : Parent(a), _graph(g) {} |
1089 | 1089 |
|
1090 | 1090 |
/// \brief Increment operator. |
1091 | 1091 |
/// |
1092 | 1092 |
/// It increments the iterator and gives back the next arc. |
1093 | 1093 |
ConArcIt& operator++() { |
1094 | 1094 |
Parent::operator=(findArc(_graph, _graph.source(*this), |
1095 | 1095 |
_graph.target(*this), *this)); |
1096 | 1096 |
return *this; |
1097 | 1097 |
} |
1098 | 1098 |
private: |
1099 | 1099 |
const GR& _graph; |
1100 | 1100 |
}; |
1101 | 1101 |
|
1102 | 1102 |
namespace _core_bits { |
1103 | 1103 |
|
1104 | 1104 |
template <typename Graph, typename Enable = void> |
1105 | 1105 |
struct FindEdgeSelector { |
1106 | 1106 |
typedef typename Graph::Node Node; |
1107 | 1107 |
typedef typename Graph::Edge Edge; |
1108 | 1108 |
static Edge find(const Graph &g, Node u, Node v, Edge e) { |
1109 | 1109 |
bool b; |
1110 | 1110 |
if (u != v) { |
1111 | 1111 |
if (e == INVALID) { |
1112 | 1112 |
g.firstInc(e, b, u); |
1113 | 1113 |
} else { |
1114 | 1114 |
b = g.u(e) == u; |
1115 | 1115 |
g.nextInc(e, b); |
1116 | 1116 |
} |
1117 | 1117 |
while (e != INVALID && (b ? g.v(e) : g.u(e)) != v) { |
1118 | 1118 |
g.nextInc(e, b); |
1119 | 1119 |
} |
1120 | 1120 |
} else { |
1121 | 1121 |
if (e == INVALID) { |
1122 | 1122 |
g.firstInc(e, b, u); |
1123 | 1123 |
} else { |
1124 | 1124 |
b = true; |
1125 | 1125 |
g.nextInc(e, b); |
1126 | 1126 |
} |
1127 | 1127 |
while (e != INVALID && (!b || g.v(e) != v)) { |
1128 | 1128 |
g.nextInc(e, b); |
1129 | 1129 |
} |
1130 | 1130 |
} |
1131 | 1131 |
return e; |
1132 | 1132 |
} |
1133 | 1133 |
}; |
1134 | 1134 |
|
1135 | 1135 |
template <typename Graph> |
1136 | 1136 |
struct FindEdgeSelector< |
1137 | 1137 |
Graph, |
1138 | 1138 |
typename enable_if<typename Graph::FindEdgeTag, void>::type> |
1139 | 1139 |
{ |
1140 | 1140 |
typedef typename Graph::Node Node; |
1141 | 1141 |
typedef typename Graph::Edge Edge; |
1142 | 1142 |
static Edge find(const Graph &g, Node u, Node v, Edge prev) { |
1143 | 1143 |
return g.findEdge(u, v, prev); |
1144 | 1144 |
} |
1145 | 1145 |
}; |
1146 | 1146 |
} |
1147 | 1147 |
|
1148 | 1148 |
/// \brief Find an edge between two nodes of a graph. |
1149 | 1149 |
/// |
1150 | 1150 |
/// This function finds an edge from node \c u to node \c v in graph \c g. |
1151 | 1151 |
/// If node \c u and node \c v is equal then each loop edge |
1152 | 1152 |
/// will be enumerated once. |
1153 | 1153 |
/// |
1154 | 1154 |
/// If \c prev is \ref INVALID (this is the default value), then |
1155 | 1155 |
/// it finds the first edge from \c u to \c v. Otherwise it looks for |
1156 | 1156 |
/// the next edge from \c u to \c v after \c prev. |
1157 | 1157 |
/// \return The found edge or \ref INVALID if there is no such an edge. |
1158 | 1158 |
/// |
1159 | 1159 |
/// Thus you can iterate through each edge between \c u and \c v |
1160 | 1160 |
/// as it follows. |
1161 | 1161 |
///\code |
1162 | 1162 |
/// for(Edge e = findEdge(g,u,v); e != INVALID; e = findEdge(g,u,v,e)) { |
1163 | 1163 |
/// ... |
1164 | 1164 |
/// } |
1165 | 1165 |
///\endcode |
1166 | 1166 |
/// |
1167 | 1167 |
/// \note \ref ConEdgeIt provides iterator interface for the same |
1168 | 1168 |
/// functionality. |
1169 | 1169 |
/// |
1170 | 1170 |
///\sa ConEdgeIt |
1171 | 1171 |
template <typename Graph> |
1172 | 1172 |
inline typename Graph::Edge |
1173 | 1173 |
findEdge(const Graph &g, typename Graph::Node u, typename Graph::Node v, |
1174 | 1174 |
typename Graph::Edge p = INVALID) { |
1175 | 1175 |
return _core_bits::FindEdgeSelector<Graph>::find(g, u, v, p); |
1176 | 1176 |
} |
1177 | 1177 |
|
1178 | 1178 |
/// \brief Iterator for iterating on parallel edges connecting the same nodes. |
1179 | 1179 |
/// |
1180 | 1180 |
/// Iterator for iterating on parallel edges connecting the same nodes. |
1181 | 1181 |
/// It is a higher level interface for the findEdge() function. You can |
1182 | 1182 |
/// use it the following way: |
1183 | 1183 |
///\code |
1184 | 1184 |
/// for (ConEdgeIt<Graph> it(g, u, v); it != INVALID; ++it) { |
1185 | 1185 |
/// ... |
1186 | 1186 |
/// } |
1187 | 1187 |
///\endcode |
1188 | 1188 |
/// |
1189 | 1189 |
///\sa findEdge() |
1190 | 1190 |
template <typename GR> |
1191 | 1191 |
class ConEdgeIt : public GR::Edge { |
1192 | 1192 |
typedef typename GR::Edge Parent; |
1193 | 1193 |
|
1194 | 1194 |
public: |
1195 | 1195 |
|
1196 | 1196 |
typedef typename GR::Edge Edge; |
1197 | 1197 |
typedef typename GR::Node Node; |
1198 | 1198 |
|
1199 | 1199 |
/// \brief Constructor. |
1200 | 1200 |
/// |
1201 | 1201 |
/// Construct a new ConEdgeIt iterating on the edges that |
1202 | 1202 |
/// connects nodes \c u and \c v. |
1203 | 1203 |
ConEdgeIt(const GR& g, Node u, Node v) : _graph(g), _u(u), _v(v) { |
1204 | 1204 |
Parent::operator=(findEdge(_graph, _u, _v)); |
1205 | 1205 |
} |
1206 | 1206 |
|
1207 | 1207 |
/// \brief Constructor. |
1208 | 1208 |
/// |
1209 | 1209 |
/// Construct a new ConEdgeIt that continues iterating from edge \c e. |
1210 | 1210 |
ConEdgeIt(const GR& g, Edge e) : Parent(e), _graph(g) {} |
1211 | 1211 |
|
1212 | 1212 |
/// \brief Increment operator. |
1213 | 1213 |
/// |
1214 | 1214 |
/// It increments the iterator and gives back the next edge. |
1215 | 1215 |
ConEdgeIt& operator++() { |
1216 | 1216 |
Parent::operator=(findEdge(_graph, _u, _v, *this)); |
1217 | 1217 |
return *this; |
1218 | 1218 |
} |
1219 | 1219 |
private: |
1220 | 1220 |
const GR& _graph; |
1221 | 1221 |
Node _u, _v; |
1222 | 1222 |
}; |
1223 | 1223 |
|
1224 | 1224 |
|
1225 | 1225 |
///Dynamic arc look-up between given endpoints. |
1226 | 1226 |
|
1227 | 1227 |
///Using this class, you can find an arc in a digraph from a given |
1228 | 1228 |
///source to a given target in amortized time <em>O</em>(log<em>d</em>), |
1229 | 1229 |
///where <em>d</em> is the out-degree of the source node. |
1230 | 1230 |
/// |
1231 | 1231 |
///It is possible to find \e all parallel arcs between two nodes with |
1232 | 1232 |
///the \c operator() member. |
1233 | 1233 |
/// |
1234 | 1234 |
///This is a dynamic data structure. Consider to use \ref ArcLookUp or |
1235 | 1235 |
///\ref AllArcLookUp if your digraph is not changed so frequently. |
1236 | 1236 |
/// |
1237 | 1237 |
///This class uses a self-adjusting binary search tree, the Splay tree |
1238 | 1238 |
///of Sleator and Tarjan to guarantee the logarithmic amortized |
1239 | 1239 |
///time bound for arc look-ups. This class also guarantees the |
1240 | 1240 |
///optimal time bound in a constant factor for any distribution of |
1241 | 1241 |
///queries. |
1242 | 1242 |
/// |
1243 | 1243 |
///\tparam GR The type of the underlying digraph. |
1244 | 1244 |
/// |
1245 | 1245 |
///\sa ArcLookUp |
1246 | 1246 |
///\sa AllArcLookUp |
1247 | 1247 |
template <typename GR> |
1248 | 1248 |
class DynArcLookUp |
1249 | 1249 |
: protected ItemSetTraits<GR, typename GR::Arc>::ItemNotifier::ObserverBase |
1250 | 1250 |
{ |
1251 | 1251 |
typedef typename ItemSetTraits<GR, typename GR::Arc> |
1252 | 1252 |
::ItemNotifier::ObserverBase Parent; |
1253 | 1253 |
|
1254 | 1254 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
1255 | 1255 |
|
1256 | 1256 |
public: |
1257 | 1257 |
|
1258 | 1258 |
/// The Digraph type |
1259 | 1259 |
typedef GR Digraph; |
1260 | 1260 |
|
1261 | 1261 |
protected: |
1262 | 1262 |
|
1263 | 1263 |
class AutoNodeMap : public ItemSetTraits<GR, Node>::template Map<Arc>::Type |
1264 | 1264 |
{ |
1265 | 1265 |
typedef typename ItemSetTraits<GR, Node>::template Map<Arc>::Type Parent; |
1266 | 1266 |
|
1267 | 1267 |
public: |
1268 | 1268 |
|
1269 | 1269 |
AutoNodeMap(const GR& digraph) : Parent(digraph, INVALID) {} |
1270 | 1270 |
|
1271 | 1271 |
virtual void add(const Node& node) { |
1272 | 1272 |
Parent::add(node); |
1273 | 1273 |
Parent::set(node, INVALID); |
1274 | 1274 |
} |
1275 | 1275 |
|
1276 | 1276 |
virtual void add(const std::vector<Node>& nodes) { |
1277 | 1277 |
Parent::add(nodes); |
1278 | 1278 |
for (int i = 0; i < int(nodes.size()); ++i) { |
1279 | 1279 |
Parent::set(nodes[i], INVALID); |
1280 | 1280 |
} |
1281 | 1281 |
} |
1282 | 1282 |
|
1283 | 1283 |
virtual void build() { |
1284 | 1284 |
Parent::build(); |
1285 | 1285 |
Node it; |
1286 | 1286 |
typename Parent::Notifier* nf = Parent::notifier(); |
1287 | 1287 |
for (nf->first(it); it != INVALID; nf->next(it)) { |
1288 | 1288 |
Parent::set(it, INVALID); |
1289 | 1289 |
} |
1290 | 1290 |
} |
1291 | 1291 |
}; |
1292 | 1292 |
|
1293 | 1293 |
class ArcLess { |
1294 | 1294 |
const Digraph &g; |
1295 | 1295 |
public: |
1296 | 1296 |
ArcLess(const Digraph &_g) : g(_g) {} |
1297 | 1297 |
bool operator()(Arc a,Arc b) const |
1298 | 1298 |
{ |
1299 | 1299 |
return g.target(a)<g.target(b); |
1300 | 1300 |
} |
1301 | 1301 |
}; |
1302 | 1302 |
|
1303 | 1303 |
protected: |
1304 | 1304 |
|
1305 | 1305 |
const Digraph &_g; |
1306 | 1306 |
AutoNodeMap _head; |
1307 | 1307 |
typename Digraph::template ArcMap<Arc> _parent; |
1308 | 1308 |
typename Digraph::template ArcMap<Arc> _left; |
1309 | 1309 |
typename Digraph::template ArcMap<Arc> _right; |
1310 | 1310 |
|
1311 | 1311 |
public: |
1312 | 1312 |
|
1313 | 1313 |
///Constructor |
1314 | 1314 |
|
1315 | 1315 |
///Constructor. |
1316 | 1316 |
/// |
1317 | 1317 |
///It builds up the search database. |
1318 | 1318 |
DynArcLookUp(const Digraph &g) |
1319 | 1319 |
: _g(g),_head(g),_parent(g),_left(g),_right(g) |
1320 | 1320 |
{ |
1321 | 1321 |
Parent::attach(_g.notifier(typename Digraph::Arc())); |
1322 | 1322 |
refresh(); |
1323 | 1323 |
} |
1324 | 1324 |
|
1325 | 1325 |
protected: |
1326 | 1326 |
|
1327 | 1327 |
virtual void add(const Arc& arc) { |
1328 | 1328 |
insert(arc); |
1329 | 1329 |
} |
1330 | 1330 |
|
1331 | 1331 |
virtual void add(const std::vector<Arc>& arcs) { |
1332 | 1332 |
for (int i = 0; i < int(arcs.size()); ++i) { |
1333 | 1333 |
insert(arcs[i]); |
1334 | 1334 |
} |
1335 | 1335 |
} |
1336 | 1336 |
|
1337 | 1337 |
virtual void erase(const Arc& arc) { |
1338 | 1338 |
remove(arc); |
1339 | 1339 |
} |
1340 | 1340 |
|
1341 | 1341 |
virtual void erase(const std::vector<Arc>& arcs) { |
1342 | 1342 |
for (int i = 0; i < int(arcs.size()); ++i) { |
1343 | 1343 |
remove(arcs[i]); |
1344 | 1344 |
} |
1345 | 1345 |
} |
1346 | 1346 |
|
1347 | 1347 |
virtual void build() { |
1348 | 1348 |
refresh(); |
1349 | 1349 |
} |
1350 | 1350 |
|
1351 | 1351 |
virtual void clear() { |
1352 | 1352 |
for(NodeIt n(_g);n!=INVALID;++n) { |
1353 | 1353 |
_head[n] = INVALID; |
1354 | 1354 |
} |
1355 | 1355 |
} |
1356 | 1356 |
|
1357 | 1357 |
void insert(Arc arc) { |
1358 | 1358 |
Node s = _g.source(arc); |
1359 | 1359 |
Node t = _g.target(arc); |
1360 | 1360 |
_left[arc] = INVALID; |
1361 | 1361 |
_right[arc] = INVALID; |
1362 | 1362 |
|
1363 | 1363 |
Arc e = _head[s]; |
1364 | 1364 |
if (e == INVALID) { |
1365 | 1365 |
_head[s] = arc; |
1366 | 1366 |
_parent[arc] = INVALID; |
1367 | 1367 |
return; |
1368 | 1368 |
} |
1369 | 1369 |
while (true) { |
1370 | 1370 |
if (t < _g.target(e)) { |
1371 | 1371 |
if (_left[e] == INVALID) { |
1372 | 1372 |
_left[e] = arc; |
1373 | 1373 |
_parent[arc] = e; |
1374 | 1374 |
splay(arc); |
1375 | 1375 |
return; |
1376 | 1376 |
} else { |
1377 | 1377 |
e = _left[e]; |
1378 | 1378 |
} |
1379 | 1379 |
} else { |
1380 | 1380 |
if (_right[e] == INVALID) { |
1381 | 1381 |
_right[e] = arc; |
1382 | 1382 |
_parent[arc] = e; |
1383 | 1383 |
splay(arc); |
1384 | 1384 |
return; |
1385 | 1385 |
} else { |
1386 | 1386 |
e = _right[e]; |
1387 | 1387 |
} |
1388 | 1388 |
} |
1389 | 1389 |
} |
1390 | 1390 |
} |
1391 | 1391 |
|
1392 | 1392 |
void remove(Arc arc) { |
1393 | 1393 |
if (_left[arc] == INVALID) { |
1394 | 1394 |
if (_right[arc] != INVALID) { |
1395 | 1395 |
_parent[_right[arc]] = _parent[arc]; |
1396 | 1396 |
} |
1397 | 1397 |
if (_parent[arc] != INVALID) { |
1398 | 1398 |
if (_left[_parent[arc]] == arc) { |
1399 | 1399 |
_left[_parent[arc]] = _right[arc]; |
1400 | 1400 |
} else { |
1401 | 1401 |
_right[_parent[arc]] = _right[arc]; |
1402 | 1402 |
} |
1403 | 1403 |
} else { |
1404 | 1404 |
_head[_g.source(arc)] = _right[arc]; |
1405 | 1405 |
} |
1406 | 1406 |
} else if (_right[arc] == INVALID) { |
1407 | 1407 |
_parent[_left[arc]] = _parent[arc]; |
1408 | 1408 |
if (_parent[arc] != INVALID) { |
1409 | 1409 |
if (_left[_parent[arc]] == arc) { |
1410 | 1410 |
_left[_parent[arc]] = _left[arc]; |
1411 | 1411 |
} else { |
1412 | 1412 |
_right[_parent[arc]] = _left[arc]; |
1413 | 1413 |
} |
1414 | 1414 |
} else { |
1415 | 1415 |
_head[_g.source(arc)] = _left[arc]; |
1416 | 1416 |
} |
1417 | 1417 |
} else { |
1418 | 1418 |
Arc e = _left[arc]; |
1419 | 1419 |
if (_right[e] != INVALID) { |
1420 | 1420 |
e = _right[e]; |
1421 | 1421 |
while (_right[e] != INVALID) { |
1422 | 1422 |
e = _right[e]; |
1423 | 1423 |
} |
1424 | 1424 |
Arc s = _parent[e]; |
1425 | 1425 |
_right[_parent[e]] = _left[e]; |
1426 | 1426 |
if (_left[e] != INVALID) { |
1427 | 1427 |
_parent[_left[e]] = _parent[e]; |
1428 | 1428 |
} |
1429 | 1429 |
|
1430 | 1430 |
_left[e] = _left[arc]; |
1431 | 1431 |
_parent[_left[arc]] = e; |
1432 | 1432 |
_right[e] = _right[arc]; |
1433 | 1433 |
_parent[_right[arc]] = e; |
1434 | 1434 |
|
1435 | 1435 |
_parent[e] = _parent[arc]; |
1436 | 1436 |
if (_parent[arc] != INVALID) { |
1437 | 1437 |
if (_left[_parent[arc]] == arc) { |
1438 | 1438 |
_left[_parent[arc]] = e; |
1439 | 1439 |
} else { |
1440 | 1440 |
_right[_parent[arc]] = e; |
1441 | 1441 |
} |
1442 | 1442 |
} |
1443 | 1443 |
splay(s); |
1444 | 1444 |
} else { |
1445 | 1445 |
_right[e] = _right[arc]; |
1446 | 1446 |
_parent[_right[arc]] = e; |
1447 | 1447 |
_parent[e] = _parent[arc]; |
1448 | 1448 |
|
1449 | 1449 |
if (_parent[arc] != INVALID) { |
1450 | 1450 |
if (_left[_parent[arc]] == arc) { |
1451 | 1451 |
_left[_parent[arc]] = e; |
1452 | 1452 |
} else { |
1453 | 1453 |
_right[_parent[arc]] = e; |
1454 | 1454 |
} |
1455 | 1455 |
} else { |
1456 | 1456 |
_head[_g.source(arc)] = e; |
1457 | 1457 |
} |
1458 | 1458 |
} |
1459 | 1459 |
} |
1460 | 1460 |
} |
1461 | 1461 |
|
1462 | 1462 |
Arc refreshRec(std::vector<Arc> &v,int a,int b) |
1463 | 1463 |
{ |
1464 | 1464 |
int m=(a+b)/2; |
1465 | 1465 |
Arc me=v[m]; |
1466 | 1466 |
if (a < m) { |
1467 | 1467 |
Arc left = refreshRec(v,a,m-1); |
1468 | 1468 |
_left[me] = left; |
1469 | 1469 |
_parent[left] = me; |
1470 | 1470 |
} else { |
1471 | 1471 |
_left[me] = INVALID; |
1472 | 1472 |
} |
1473 | 1473 |
if (m < b) { |
1474 | 1474 |
Arc right = refreshRec(v,m+1,b); |
1475 | 1475 |
_right[me] = right; |
1476 | 1476 |
_parent[right] = me; |
1477 | 1477 |
} else { |
1478 | 1478 |
_right[me] = INVALID; |
1479 | 1479 |
} |
1480 | 1480 |
return me; |
1481 | 1481 |
} |
1482 | 1482 |
|
1483 | 1483 |
void refresh() { |
1484 | 1484 |
for(NodeIt n(_g);n!=INVALID;++n) { |
1485 | 1485 |
std::vector<Arc> v; |
1486 | 1486 |
for(OutArcIt a(_g,n);a!=INVALID;++a) v.push_back(a); |
1487 | 1487 |
if (!v.empty()) { |
1488 | 1488 |
std::sort(v.begin(),v.end(),ArcLess(_g)); |
1489 | 1489 |
Arc head = refreshRec(v,0,v.size()-1); |
1490 | 1490 |
_head[n] = head; |
1491 | 1491 |
_parent[head] = INVALID; |
1492 | 1492 |
} |
1493 | 1493 |
else _head[n] = INVALID; |
1494 | 1494 |
} |
1495 | 1495 |
} |
1496 | 1496 |
|
1497 | 1497 |
void zig(Arc v) { |
1498 | 1498 |
Arc w = _parent[v]; |
1499 | 1499 |
_parent[v] = _parent[w]; |
1500 | 1500 |
_parent[w] = v; |
1501 | 1501 |
_left[w] = _right[v]; |
1502 | 1502 |
_right[v] = w; |
1503 | 1503 |
if (_parent[v] != INVALID) { |
1504 | 1504 |
if (_right[_parent[v]] == w) { |
1505 | 1505 |
_right[_parent[v]] = v; |
1506 | 1506 |
} else { |
1507 | 1507 |
_left[_parent[v]] = v; |
1508 | 1508 |
} |
1509 | 1509 |
} |
1510 | 1510 |
if (_left[w] != INVALID){ |
1511 | 1511 |
_parent[_left[w]] = w; |
1512 | 1512 |
} |
1513 | 1513 |
} |
1514 | 1514 |
|
1515 | 1515 |
void zag(Arc v) { |
1516 | 1516 |
Arc w = _parent[v]; |
1517 | 1517 |
_parent[v] = _parent[w]; |
1518 | 1518 |
_parent[w] = v; |
1519 | 1519 |
_right[w] = _left[v]; |
1520 | 1520 |
_left[v] = w; |
1521 | 1521 |
if (_parent[v] != INVALID){ |
1522 | 1522 |
if (_left[_parent[v]] == w) { |
1523 | 1523 |
_left[_parent[v]] = v; |
1524 | 1524 |
} else { |
1525 | 1525 |
_right[_parent[v]] = v; |
1526 | 1526 |
} |
1527 | 1527 |
} |
1528 | 1528 |
if (_right[w] != INVALID){ |
1529 | 1529 |
_parent[_right[w]] = w; |
1530 | 1530 |
} |
1531 | 1531 |
} |
1532 | 1532 |
|
1533 | 1533 |
void splay(Arc v) { |
1534 | 1534 |
while (_parent[v] != INVALID) { |
1535 | 1535 |
if (v == _left[_parent[v]]) { |
1536 | 1536 |
if (_parent[_parent[v]] == INVALID) { |
1537 | 1537 |
zig(v); |
1538 | 1538 |
} else { |
1539 | 1539 |
if (_parent[v] == _left[_parent[_parent[v]]]) { |
1540 | 1540 |
zig(_parent[v]); |
1541 | 1541 |
zig(v); |
1542 | 1542 |
} else { |
1543 | 1543 |
zig(v); |
1544 | 1544 |
zag(v); |
1545 | 1545 |
} |
1546 | 1546 |
} |
1547 | 1547 |
} else { |
1548 | 1548 |
if (_parent[_parent[v]] == INVALID) { |
1549 | 1549 |
zag(v); |
1550 | 1550 |
} else { |
1551 | 1551 |
if (_parent[v] == _left[_parent[_parent[v]]]) { |
1552 | 1552 |
zag(v); |
1553 | 1553 |
zig(v); |
1554 | 1554 |
} else { |
1555 | 1555 |
zag(_parent[v]); |
1556 | 1556 |
zag(v); |
1557 | 1557 |
} |
1558 | 1558 |
} |
1559 | 1559 |
} |
1560 | 1560 |
} |
1561 | 1561 |
_head[_g.source(v)] = v; |
1562 | 1562 |
} |
1563 | 1563 |
|
1564 | 1564 |
|
1565 | 1565 |
public: |
1566 | 1566 |
|
1567 | 1567 |
///Find an arc between two nodes. |
1568 | 1568 |
|
1569 | 1569 |
///Find an arc between two nodes. |
1570 | 1570 |
///\param s The source node. |
1571 | 1571 |
///\param t The target node. |
1572 | 1572 |
///\param p The previous arc between \c s and \c t. It it is INVALID or |
1573 | 1573 |
///not given, the operator finds the first appropriate arc. |
1574 | 1574 |
///\return An arc from \c s to \c t after \c p or |
1575 | 1575 |
///\ref INVALID if there is no more. |
1576 | 1576 |
/// |
1577 | 1577 |
///For example, you can count the number of arcs from \c u to \c v in the |
1578 | 1578 |
///following way. |
1579 | 1579 |
///\code |
1580 | 1580 |
///DynArcLookUp<ListDigraph> ae(g); |
1581 | 1581 |
///... |
1582 | 1582 |
///int n = 0; |
1583 | 1583 |
///for(Arc a = ae(u,v); a != INVALID; a = ae(u,v,a)) n++; |
1584 | 1584 |
///\endcode |
1585 | 1585 |
/// |
1586 | 1586 |
///Finding the arcs take at most <em>O</em>(log<em>d</em>) |
1587 | 1587 |
///amortized time, specifically, the time complexity of the lookups |
1588 | 1588 |
///is equal to the optimal search tree implementation for the |
1589 | 1589 |
///current query distribution in a constant factor. |
1590 | 1590 |
/// |
1591 | 1591 |
///\note This is a dynamic data structure, therefore the data |
1592 | 1592 |
///structure is updated after each graph alteration. Thus although |
1593 | 1593 |
///this data structure is theoretically faster than \ref ArcLookUp |
1594 | 1594 |
///and \ref AllArcLookUp, it often provides worse performance than |
1595 | 1595 |
///them. |
1596 | 1596 |
Arc operator()(Node s, Node t, Arc p = INVALID) const { |
1597 | 1597 |
if (p == INVALID) { |
1598 | 1598 |
Arc a = _head[s]; |
1599 | 1599 |
if (a == INVALID) return INVALID; |
1600 | 1600 |
Arc r = INVALID; |
1601 | 1601 |
while (true) { |
1602 | 1602 |
if (_g.target(a) < t) { |
1603 | 1603 |
if (_right[a] == INVALID) { |
1604 | 1604 |
const_cast<DynArcLookUp&>(*this).splay(a); |
1605 | 1605 |
return r; |
1606 | 1606 |
} else { |
1607 | 1607 |
a = _right[a]; |
1608 | 1608 |
} |
1609 | 1609 |
} else { |
1610 | 1610 |
if (_g.target(a) == t) { |
1611 | 1611 |
r = a; |
1612 | 1612 |
} |
1613 | 1613 |
if (_left[a] == INVALID) { |
1614 | 1614 |
const_cast<DynArcLookUp&>(*this).splay(a); |
1615 | 1615 |
return r; |
1616 | 1616 |
} else { |
1617 | 1617 |
a = _left[a]; |
1618 | 1618 |
} |
1619 | 1619 |
} |
1620 | 1620 |
} |
1621 | 1621 |
} else { |
1622 | 1622 |
Arc a = p; |
1623 | 1623 |
if (_right[a] != INVALID) { |
1624 | 1624 |
a = _right[a]; |
1625 | 1625 |
while (_left[a] != INVALID) { |
1626 | 1626 |
a = _left[a]; |
1627 | 1627 |
} |
1628 | 1628 |
const_cast<DynArcLookUp&>(*this).splay(a); |
1629 | 1629 |
} else { |
1630 | 1630 |
while (_parent[a] != INVALID && _right[_parent[a]] == a) { |
1631 | 1631 |
a = _parent[a]; |
1632 | 1632 |
} |
1633 | 1633 |
if (_parent[a] == INVALID) { |
1634 | 1634 |
return INVALID; |
1635 | 1635 |
} else { |
1636 | 1636 |
a = _parent[a]; |
1637 | 1637 |
const_cast<DynArcLookUp&>(*this).splay(a); |
1638 | 1638 |
} |
1639 | 1639 |
} |
1640 | 1640 |
if (_g.target(a) == t) return a; |
1641 | 1641 |
else return INVALID; |
1642 | 1642 |
} |
1643 | 1643 |
} |
1644 | 1644 |
|
1645 | 1645 |
}; |
1646 | 1646 |
|
1647 | 1647 |
///Fast arc look-up between given endpoints. |
1648 | 1648 |
|
1649 | 1649 |
///Using this class, you can find an arc in a digraph from a given |
1650 | 1650 |
///source to a given target in time <em>O</em>(log<em>d</em>), |
1651 | 1651 |
///where <em>d</em> is the out-degree of the source node. |
1652 | 1652 |
/// |
1653 | 1653 |
///It is not possible to find \e all parallel arcs between two nodes. |
1654 | 1654 |
///Use \ref AllArcLookUp for this purpose. |
1655 | 1655 |
/// |
1656 | 1656 |
///\warning This class is static, so you should call refresh() (or at |
1657 | 1657 |
///least refresh(Node)) to refresh this data structure whenever the |
1658 | 1658 |
///digraph changes. This is a time consuming (superlinearly proportional |
1659 | 1659 |
///(<em>O</em>(<em>m</em> log<em>m</em>)) to the number of arcs). |
1660 | 1660 |
/// |
1661 | 1661 |
///\tparam GR The type of the underlying digraph. |
1662 | 1662 |
/// |
1663 | 1663 |
///\sa DynArcLookUp |
1664 | 1664 |
///\sa AllArcLookUp |
1665 | 1665 |
template<class GR> |
1666 | 1666 |
class ArcLookUp |
1667 | 1667 |
{ |
1668 | 1668 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
1669 | 1669 |
|
1670 | 1670 |
public: |
1671 | 1671 |
|
1672 | 1672 |
/// The Digraph type |
1673 | 1673 |
typedef GR Digraph; |
1674 | 1674 |
|
1675 | 1675 |
protected: |
1676 | 1676 |
const Digraph &_g; |
1677 | 1677 |
typename Digraph::template NodeMap<Arc> _head; |
1678 | 1678 |
typename Digraph::template ArcMap<Arc> _left; |
1679 | 1679 |
typename Digraph::template ArcMap<Arc> _right; |
1680 | 1680 |
|
1681 | 1681 |
class ArcLess { |
1682 | 1682 |
const Digraph &g; |
1683 | 1683 |
public: |
1684 | 1684 |
ArcLess(const Digraph &_g) : g(_g) {} |
1685 | 1685 |
bool operator()(Arc a,Arc b) const |
1686 | 1686 |
{ |
1687 | 1687 |
return g.target(a)<g.target(b); |
1688 | 1688 |
} |
1689 | 1689 |
}; |
1690 | 1690 |
|
1691 | 1691 |
public: |
1692 | 1692 |
|
1693 | 1693 |
///Constructor |
1694 | 1694 |
|
1695 | 1695 |
///Constructor. |
1696 | 1696 |
/// |
1697 | 1697 |
///It builds up the search database, which remains valid until the digraph |
1698 | 1698 |
///changes. |
1699 | 1699 |
ArcLookUp(const Digraph &g) :_g(g),_head(g),_left(g),_right(g) {refresh();} |
1700 | 1700 |
|
1701 | 1701 |
private: |
1702 | 1702 |
Arc refreshRec(std::vector<Arc> &v,int a,int b) |
1703 | 1703 |
{ |
1704 | 1704 |
int m=(a+b)/2; |
1705 | 1705 |
Arc me=v[m]; |
1706 | 1706 |
_left[me] = a<m?refreshRec(v,a,m-1):INVALID; |
1707 | 1707 |
_right[me] = m<b?refreshRec(v,m+1,b):INVALID; |
1708 | 1708 |
return me; |
1709 | 1709 |
} |
1710 | 1710 |
public: |
1711 | 1711 |
///Refresh the search data structure at a node. |
1712 | 1712 |
|
1713 | 1713 |
///Build up the search database of node \c n. |
1714 | 1714 |
/// |
1715 | 1715 |
///It runs in time <em>O</em>(<em>d</em> log<em>d</em>), where <em>d</em> |
1716 | 1716 |
///is the number of the outgoing arcs of \c n. |
1717 | 1717 |
void refresh(Node n) |
1718 | 1718 |
{ |
1719 | 1719 |
std::vector<Arc> v; |
1720 | 1720 |
for(OutArcIt e(_g,n);e!=INVALID;++e) v.push_back(e); |
1721 | 1721 |
if(v.size()) { |
1722 | 1722 |
std::sort(v.begin(),v.end(),ArcLess(_g)); |
1723 | 1723 |
_head[n]=refreshRec(v,0,v.size()-1); |
1724 | 1724 |
} |
1725 | 1725 |
else _head[n]=INVALID; |
1726 | 1726 |
} |
1727 | 1727 |
///Refresh the full data structure. |
1728 | 1728 |
|
1729 | 1729 |
///Build up the full search database. In fact, it simply calls |
1730 | 1730 |
///\ref refresh(Node) "refresh(n)" for each node \c n. |
1731 | 1731 |
/// |
1732 | 1732 |
///It runs in time <em>O</em>(<em>m</em> log<em>D</em>), where <em>m</em> is |
1733 | 1733 |
///the number of the arcs in the digraph and <em>D</em> is the maximum |
1734 | 1734 |
///out-degree of the digraph. |
1735 | 1735 |
void refresh() |
1736 | 1736 |
{ |
1737 | 1737 |
for(NodeIt n(_g);n!=INVALID;++n) refresh(n); |
1738 | 1738 |
} |
1739 | 1739 |
|
1740 | 1740 |
///Find an arc between two nodes. |
1741 | 1741 |
|
1742 | 1742 |
///Find an arc between two nodes in time <em>O</em>(log<em>d</em>), |
1743 | 1743 |
///where <em>d</em> is the number of outgoing arcs of \c s. |
1744 | 1744 |
///\param s The source node. |
1745 | 1745 |
///\param t The target node. |
1746 | 1746 |
///\return An arc from \c s to \c t if there exists, |
1747 | 1747 |
///\ref INVALID otherwise. |
1748 | 1748 |
/// |
1749 | 1749 |
///\warning If you change the digraph, refresh() must be called before using |
1750 | 1750 |
///this operator. If you change the outgoing arcs of |
1751 | 1751 |
///a single node \c n, then \ref refresh(Node) "refresh(n)" is enough. |
1752 | 1752 |
Arc operator()(Node s, Node t) const |
1753 | 1753 |
{ |
1754 | 1754 |
Arc e; |
1755 | 1755 |
for(e=_head[s]; |
1756 | 1756 |
e!=INVALID&&_g.target(e)!=t; |
1757 | 1757 |
e = t < _g.target(e)?_left[e]:_right[e]) ; |
1758 | 1758 |
return e; |
1759 | 1759 |
} |
1760 | 1760 |
|
1761 | 1761 |
}; |
1762 | 1762 |
|
1763 | 1763 |
///Fast look-up of all arcs between given endpoints. |
1764 | 1764 |
|
1765 | 1765 |
///This class is the same as \ref ArcLookUp, with the addition |
1766 | 1766 |
///that it makes it possible to find all parallel arcs between given |
1767 | 1767 |
///endpoints. |
1768 | 1768 |
/// |
1769 | 1769 |
///\warning This class is static, so you should call refresh() (or at |
1770 | 1770 |
///least refresh(Node)) to refresh this data structure whenever the |
1771 | 1771 |
///digraph changes. This is a time consuming (superlinearly proportional |
1772 | 1772 |
///(<em>O</em>(<em>m</em> log<em>m</em>)) to the number of arcs). |
1773 | 1773 |
/// |
1774 | 1774 |
///\tparam GR The type of the underlying digraph. |
1775 | 1775 |
/// |
1776 | 1776 |
///\sa DynArcLookUp |
1777 | 1777 |
///\sa ArcLookUp |
1778 | 1778 |
template<class GR> |
1779 | 1779 |
class AllArcLookUp : public ArcLookUp<GR> |
1780 | 1780 |
{ |
1781 | 1781 |
using ArcLookUp<GR>::_g; |
1782 | 1782 |
using ArcLookUp<GR>::_right; |
1783 | 1783 |
using ArcLookUp<GR>::_left; |
1784 | 1784 |
using ArcLookUp<GR>::_head; |
1785 | 1785 |
|
1786 | 1786 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
1787 | 1787 |
|
1788 | 1788 |
typename GR::template ArcMap<Arc> _next; |
1789 | 1789 |
|
1790 | 1790 |
Arc refreshNext(Arc head,Arc next=INVALID) |
1791 | 1791 |
{ |
1792 | 1792 |
if(head==INVALID) return next; |
1793 | 1793 |
else { |
1794 | 1794 |
next=refreshNext(_right[head],next); |
1795 | 1795 |
_next[head]=( next!=INVALID && _g.target(next)==_g.target(head)) |
1796 | 1796 |
? next : INVALID; |
1797 | 1797 |
return refreshNext(_left[head],head); |
1798 | 1798 |
} |
1799 | 1799 |
} |
1800 | 1800 |
|
1801 | 1801 |
void refreshNext() |
1802 | 1802 |
{ |
1803 | 1803 |
for(NodeIt n(_g);n!=INVALID;++n) refreshNext(_head[n]); |
1804 | 1804 |
} |
1805 | 1805 |
|
1806 | 1806 |
public: |
1807 | 1807 |
|
1808 | 1808 |
/// The Digraph type |
1809 | 1809 |
typedef GR Digraph; |
1810 | 1810 |
|
1811 | 1811 |
///Constructor |
1812 | 1812 |
|
1813 | 1813 |
///Constructor. |
1814 | 1814 |
/// |
1815 | 1815 |
///It builds up the search database, which remains valid until the digraph |
1816 | 1816 |
///changes. |
1817 | 1817 |
AllArcLookUp(const Digraph &g) : ArcLookUp<GR>(g), _next(g) {refreshNext();} |
1818 | 1818 |
|
1819 | 1819 |
///Refresh the data structure at a node. |
1820 | 1820 |
|
1821 | 1821 |
///Build up the search database of node \c n. |
1822 | 1822 |
/// |
1823 | 1823 |
///It runs in time <em>O</em>(<em>d</em> log<em>d</em>), where <em>d</em> is |
1824 | 1824 |
///the number of the outgoing arcs of \c n. |
1825 | 1825 |
void refresh(Node n) |
1826 | 1826 |
{ |
1827 | 1827 |
ArcLookUp<GR>::refresh(n); |
1828 | 1828 |
refreshNext(_head[n]); |
1829 | 1829 |
} |
1830 | 1830 |
|
1831 | 1831 |
///Refresh the full data structure. |
1832 | 1832 |
|
1833 | 1833 |
///Build up the full search database. In fact, it simply calls |
1834 | 1834 |
///\ref refresh(Node) "refresh(n)" for each node \c n. |
1835 | 1835 |
/// |
1836 | 1836 |
///It runs in time <em>O</em>(<em>m</em> log<em>D</em>), where <em>m</em> is |
1837 | 1837 |
///the number of the arcs in the digraph and <em>D</em> is the maximum |
1838 | 1838 |
///out-degree of the digraph. |
1839 | 1839 |
void refresh() |
1840 | 1840 |
{ |
1841 | 1841 |
for(NodeIt n(_g);n!=INVALID;++n) refresh(_head[n]); |
1842 | 1842 |
} |
1843 | 1843 |
|
1844 | 1844 |
///Find an arc between two nodes. |
1845 | 1845 |
|
1846 | 1846 |
///Find an arc between two nodes. |
1847 | 1847 |
///\param s The source node. |
1848 | 1848 |
///\param t The target node. |
1849 | 1849 |
///\param prev The previous arc between \c s and \c t. It it is INVALID or |
1850 | 1850 |
///not given, the operator finds the first appropriate arc. |
1851 | 1851 |
///\return An arc from \c s to \c t after \c prev or |
1852 | 1852 |
///\ref INVALID if there is no more. |
1853 | 1853 |
/// |
1854 | 1854 |
///For example, you can count the number of arcs from \c u to \c v in the |
1855 | 1855 |
///following way. |
1856 | 1856 |
///\code |
1857 | 1857 |
///AllArcLookUp<ListDigraph> ae(g); |
1858 | 1858 |
///... |
1859 | 1859 |
///int n = 0; |
1860 | 1860 |
///for(Arc a = ae(u,v); a != INVALID; a=ae(u,v,a)) n++; |
1861 | 1861 |
///\endcode |
1862 | 1862 |
/// |
1863 | 1863 |
///Finding the first arc take <em>O</em>(log<em>d</em>) time, |
1864 | 1864 |
///where <em>d</em> is the number of outgoing arcs of \c s. Then the |
1865 | 1865 |
///consecutive arcs are found in constant time. |
1866 | 1866 |
/// |
1867 | 1867 |
///\warning If you change the digraph, refresh() must be called before using |
1868 | 1868 |
///this operator. If you change the outgoing arcs of |
1869 | 1869 |
///a single node \c n, then \ref refresh(Node) "refresh(n)" is enough. |
1870 | 1870 |
/// |
1871 | 1871 |
#ifdef DOXYGEN |
1872 | 1872 |
Arc operator()(Node s, Node t, Arc prev=INVALID) const {} |
1873 | 1873 |
#else |
1874 | 1874 |
using ArcLookUp<GR>::operator() ; |
1875 | 1875 |
Arc operator()(Node s, Node t, Arc prev) const |
1876 | 1876 |
{ |
1877 | 1877 |
return prev==INVALID?(*this)(s,t):_next[prev]; |
1878 | 1878 |
} |
1879 | 1879 |
#endif |
1880 | 1880 |
|
1881 | 1881 |
}; |
1882 | 1882 |
|
1883 | 1883 |
/// @} |
1884 | 1884 |
|
1885 | 1885 |
} //namespace lemon |
1886 | 1886 |
|
1887 | 1887 |
#endif |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#ifndef LEMON_COST_SCALING_H |
20 | 20 |
#define LEMON_COST_SCALING_H |
21 | 21 |
|
22 | 22 |
/// \ingroup min_cost_flow_algs |
23 | 23 |
/// \file |
24 | 24 |
/// \brief Cost scaling algorithm for finding a minimum cost flow. |
25 | 25 |
|
26 | 26 |
#include <vector> |
27 | 27 |
#include <deque> |
28 | 28 |
#include <limits> |
29 | 29 |
|
30 | 30 |
#include <lemon/core.h> |
31 | 31 |
#include <lemon/maps.h> |
32 | 32 |
#include <lemon/math.h> |
33 | 33 |
#include <lemon/static_graph.h> |
34 | 34 |
#include <lemon/circulation.h> |
35 | 35 |
#include <lemon/bellman_ford.h> |
36 | 36 |
|
37 | 37 |
namespace lemon { |
38 | 38 |
|
39 | 39 |
/// \brief Default traits class of CostScaling algorithm. |
40 | 40 |
/// |
41 | 41 |
/// Default traits class of CostScaling algorithm. |
42 | 42 |
/// \tparam GR Digraph type. |
43 | 43 |
/// \tparam V The number type used for flow amounts, capacity bounds |
44 | 44 |
/// and supply values. By default it is \c int. |
45 | 45 |
/// \tparam C The number type used for costs and potentials. |
46 | 46 |
/// By default it is the same as \c V. |
47 | 47 |
#ifdef DOXYGEN |
48 | 48 |
template <typename GR, typename V = int, typename C = V> |
49 | 49 |
#else |
50 | 50 |
template < typename GR, typename V = int, typename C = V, |
51 | 51 |
bool integer = std::numeric_limits<C>::is_integer > |
52 | 52 |
#endif |
53 | 53 |
struct CostScalingDefaultTraits |
54 | 54 |
{ |
55 | 55 |
/// The type of the digraph |
56 | 56 |
typedef GR Digraph; |
57 | 57 |
/// The type of the flow amounts, capacity bounds and supply values |
58 | 58 |
typedef V Value; |
59 | 59 |
/// The type of the arc costs |
60 | 60 |
typedef C Cost; |
61 | 61 |
|
62 | 62 |
/// \brief The large cost type used for internal computations |
63 | 63 |
/// |
64 | 64 |
/// The large cost type used for internal computations. |
65 | 65 |
/// It is \c long \c long if the \c Cost type is integer, |
66 | 66 |
/// otherwise it is \c double. |
67 | 67 |
/// \c Cost must be convertible to \c LargeCost. |
68 | 68 |
typedef double LargeCost; |
69 | 69 |
}; |
70 | 70 |
|
71 | 71 |
// Default traits class for integer cost types |
72 | 72 |
template <typename GR, typename V, typename C> |
73 | 73 |
struct CostScalingDefaultTraits<GR, V, C, true> |
74 | 74 |
{ |
75 | 75 |
typedef GR Digraph; |
76 | 76 |
typedef V Value; |
77 | 77 |
typedef C Cost; |
78 | 78 |
#ifdef LEMON_HAVE_LONG_LONG |
79 | 79 |
typedef long long LargeCost; |
80 | 80 |
#else |
81 | 81 |
typedef long LargeCost; |
82 | 82 |
#endif |
83 | 83 |
}; |
84 | 84 |
|
85 | 85 |
|
86 | 86 |
/// \addtogroup min_cost_flow_algs |
87 | 87 |
/// @{ |
88 | 88 |
|
89 | 89 |
/// \brief Implementation of the Cost Scaling algorithm for |
90 | 90 |
/// finding a \ref min_cost_flow "minimum cost flow". |
91 | 91 |
/// |
92 | 92 |
/// \ref CostScaling implements a cost scaling algorithm that performs |
93 | 93 |
/// push/augment and relabel operations for finding a \ref min_cost_flow |
94 | 94 |
/// "minimum cost flow" \ref amo93networkflows, \ref goldberg90approximation, |
95 | 95 |
/// \ref goldberg97efficient, \ref bunnagel98efficient. |
96 | 96 |
/// It is a highly efficient primal-dual solution method, which |
97 | 97 |
/// can be viewed as the generalization of the \ref Preflow |
98 | 98 |
/// "preflow push-relabel" algorithm for the maximum flow problem. |
99 | 99 |
/// |
100 |
/// In general, \ref NetworkSimplex and \ref CostScaling are the fastest |
|
101 |
/// implementations available in LEMON for this problem. |
|
102 |
/// |
|
100 | 103 |
/// Most of the parameters of the problem (except for the digraph) |
101 | 104 |
/// can be given using separate functions, and the algorithm can be |
102 | 105 |
/// executed using the \ref run() function. If some parameters are not |
103 | 106 |
/// specified, then default values will be used. |
104 | 107 |
/// |
105 | 108 |
/// \tparam GR The digraph type the algorithm runs on. |
106 | 109 |
/// \tparam V The number type used for flow amounts, capacity bounds |
107 | 110 |
/// and supply values in the algorithm. By default, it is \c int. |
108 | 111 |
/// \tparam C The number type used for costs and potentials in the |
109 | 112 |
/// algorithm. By default, it is the same as \c V. |
110 | 113 |
/// \tparam TR The traits class that defines various types used by the |
111 | 114 |
/// algorithm. By default, it is \ref CostScalingDefaultTraits |
112 | 115 |
/// "CostScalingDefaultTraits<GR, V, C>". |
113 | 116 |
/// In most cases, this parameter should not be set directly, |
114 | 117 |
/// consider to use the named template parameters instead. |
115 | 118 |
/// |
116 | 119 |
/// \warning Both number types must be signed and all input data must |
117 | 120 |
/// be integer. |
118 |
/// \warning This algorithm does not support negative costs for such |
|
119 |
/// arcs that have infinite upper bound. |
|
121 |
/// \warning This algorithm does not support negative costs for |
|
122 |
/// arcs having infinite upper bound. |
|
120 | 123 |
/// |
121 | 124 |
/// \note %CostScaling provides three different internal methods, |
122 | 125 |
/// from which the most efficient one is used by default. |
123 | 126 |
/// For more information, see \ref Method. |
124 | 127 |
#ifdef DOXYGEN |
125 | 128 |
template <typename GR, typename V, typename C, typename TR> |
126 | 129 |
#else |
127 | 130 |
template < typename GR, typename V = int, typename C = V, |
128 | 131 |
typename TR = CostScalingDefaultTraits<GR, V, C> > |
129 | 132 |
#endif |
130 | 133 |
class CostScaling |
131 | 134 |
{ |
132 | 135 |
public: |
133 | 136 |
|
134 | 137 |
/// The type of the digraph |
135 | 138 |
typedef typename TR::Digraph Digraph; |
136 | 139 |
/// The type of the flow amounts, capacity bounds and supply values |
137 | 140 |
typedef typename TR::Value Value; |
138 | 141 |
/// The type of the arc costs |
139 | 142 |
typedef typename TR::Cost Cost; |
140 | 143 |
|
141 | 144 |
/// \brief The large cost type |
142 | 145 |
/// |
143 | 146 |
/// The large cost type used for internal computations. |
144 | 147 |
/// By default, it is \c long \c long if the \c Cost type is integer, |
145 | 148 |
/// otherwise it is \c double. |
146 | 149 |
typedef typename TR::LargeCost LargeCost; |
147 | 150 |
|
148 | 151 |
/// The \ref CostScalingDefaultTraits "traits class" of the algorithm |
149 | 152 |
typedef TR Traits; |
150 | 153 |
|
151 | 154 |
public: |
152 | 155 |
|
153 | 156 |
/// \brief Problem type constants for the \c run() function. |
154 | 157 |
/// |
155 | 158 |
/// Enum type containing the problem type constants that can be |
156 | 159 |
/// returned by the \ref run() function of the algorithm. |
157 | 160 |
enum ProblemType { |
158 | 161 |
/// The problem has no feasible solution (flow). |
159 | 162 |
INFEASIBLE, |
160 | 163 |
/// The problem has optimal solution (i.e. it is feasible and |
161 | 164 |
/// bounded), and the algorithm has found optimal flow and node |
162 | 165 |
/// potentials (primal and dual solutions). |
163 | 166 |
OPTIMAL, |
164 | 167 |
/// The digraph contains an arc of negative cost and infinite |
165 | 168 |
/// upper bound. It means that the objective function is unbounded |
166 | 169 |
/// on that arc, however, note that it could actually be bounded |
167 | 170 |
/// over the feasible flows, but this algroithm cannot handle |
168 | 171 |
/// these cases. |
169 | 172 |
UNBOUNDED |
170 | 173 |
}; |
171 | 174 |
|
172 | 175 |
/// \brief Constants for selecting the internal method. |
173 | 176 |
/// |
174 | 177 |
/// Enum type containing constants for selecting the internal method |
175 | 178 |
/// for the \ref run() function. |
176 | 179 |
/// |
177 | 180 |
/// \ref CostScaling provides three internal methods that differ mainly |
178 | 181 |
/// in their base operations, which are used in conjunction with the |
179 | 182 |
/// relabel operation. |
180 | 183 |
/// By default, the so called \ref PARTIAL_AUGMENT |
181 |
/// "Partial Augment-Relabel" method is used, which |
|
184 |
/// "Partial Augment-Relabel" method is used, which turned out to be |
|
182 | 185 |
/// the most efficient and the most robust on various test inputs. |
183 | 186 |
/// However, the other methods can be selected using the \ref run() |
184 | 187 |
/// function with the proper parameter. |
185 | 188 |
enum Method { |
186 | 189 |
/// Local push operations are used, i.e. flow is moved only on one |
187 | 190 |
/// admissible arc at once. |
188 | 191 |
PUSH, |
189 | 192 |
/// Augment operations are used, i.e. flow is moved on admissible |
190 | 193 |
/// paths from a node with excess to a node with deficit. |
191 | 194 |
AUGMENT, |
192 | 195 |
/// Partial augment operations are used, i.e. flow is moved on |
193 | 196 |
/// admissible paths started from a node with excess, but the |
194 | 197 |
/// lengths of these paths are limited. This method can be viewed |
195 | 198 |
/// as a combined version of the previous two operations. |
196 | 199 |
PARTIAL_AUGMENT |
197 | 200 |
}; |
198 | 201 |
|
199 | 202 |
private: |
200 | 203 |
|
201 | 204 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
202 | 205 |
|
203 | 206 |
typedef std::vector<int> IntVector; |
204 | 207 |
typedef std::vector<Value> ValueVector; |
205 | 208 |
typedef std::vector<Cost> CostVector; |
206 | 209 |
typedef std::vector<LargeCost> LargeCostVector; |
207 | 210 |
typedef std::vector<char> BoolVector; |
208 | 211 |
// Note: vector<char> is used instead of vector<bool> for efficiency reasons |
209 | 212 |
|
210 | 213 |
private: |
211 | 214 |
|
212 | 215 |
template <typename KT, typename VT> |
213 | 216 |
class StaticVectorMap { |
214 | 217 |
public: |
215 | 218 |
typedef KT Key; |
216 | 219 |
typedef VT Value; |
217 | 220 |
|
218 | 221 |
StaticVectorMap(std::vector<Value>& v) : _v(v) {} |
219 | 222 |
|
220 | 223 |
const Value& operator[](const Key& key) const { |
221 | 224 |
return _v[StaticDigraph::id(key)]; |
222 | 225 |
} |
223 | 226 |
|
224 | 227 |
Value& operator[](const Key& key) { |
225 | 228 |
return _v[StaticDigraph::id(key)]; |
226 | 229 |
} |
227 | 230 |
|
228 | 231 |
void set(const Key& key, const Value& val) { |
229 | 232 |
_v[StaticDigraph::id(key)] = val; |
230 | 233 |
} |
231 | 234 |
|
232 | 235 |
private: |
233 | 236 |
std::vector<Value>& _v; |
234 | 237 |
}; |
235 | 238 |
|
236 | 239 |
typedef StaticVectorMap<StaticDigraph::Node, LargeCost> LargeCostNodeMap; |
237 | 240 |
typedef StaticVectorMap<StaticDigraph::Arc, LargeCost> LargeCostArcMap; |
238 | 241 |
|
239 | 242 |
private: |
240 | 243 |
|
241 | 244 |
// Data related to the underlying digraph |
242 | 245 |
const GR &_graph; |
243 | 246 |
int _node_num; |
244 | 247 |
int _arc_num; |
245 | 248 |
int _res_node_num; |
246 | 249 |
int _res_arc_num; |
247 | 250 |
int _root; |
248 | 251 |
|
249 | 252 |
// Parameters of the problem |
250 | 253 |
bool _have_lower; |
251 | 254 |
Value _sum_supply; |
252 | 255 |
int _sup_node_num; |
253 | 256 |
|
254 | 257 |
// Data structures for storing the digraph |
255 | 258 |
IntNodeMap _node_id; |
256 | 259 |
IntArcMap _arc_idf; |
257 | 260 |
IntArcMap _arc_idb; |
258 | 261 |
IntVector _first_out; |
259 | 262 |
BoolVector _forward; |
260 | 263 |
IntVector _source; |
261 | 264 |
IntVector _target; |
262 | 265 |
IntVector _reverse; |
263 | 266 |
|
264 | 267 |
// Node and arc data |
265 | 268 |
ValueVector _lower; |
266 | 269 |
ValueVector _upper; |
267 | 270 |
CostVector _scost; |
268 | 271 |
ValueVector _supply; |
269 | 272 |
|
270 | 273 |
ValueVector _res_cap; |
271 | 274 |
LargeCostVector _cost; |
272 | 275 |
LargeCostVector _pi; |
273 | 276 |
ValueVector _excess; |
274 | 277 |
IntVector _next_out; |
275 | 278 |
std::deque<int> _active_nodes; |
276 | 279 |
|
277 | 280 |
// Data for scaling |
278 | 281 |
LargeCost _epsilon; |
279 | 282 |
int _alpha; |
280 | 283 |
|
281 | 284 |
IntVector _buckets; |
282 | 285 |
IntVector _bucket_next; |
283 | 286 |
IntVector _bucket_prev; |
284 | 287 |
IntVector _rank; |
285 | 288 |
int _max_rank; |
286 | 289 |
|
287 | 290 |
// Data for a StaticDigraph structure |
288 | 291 |
typedef std::pair<int, int> IntPair; |
289 | 292 |
StaticDigraph _sgr; |
290 | 293 |
std::vector<IntPair> _arc_vec; |
291 | 294 |
std::vector<LargeCost> _cost_vec; |
292 | 295 |
LargeCostArcMap _cost_map; |
293 | 296 |
LargeCostNodeMap _pi_map; |
294 | 297 |
|
295 | 298 |
public: |
296 | 299 |
|
297 | 300 |
/// \brief Constant for infinite upper bounds (capacities). |
298 | 301 |
/// |
299 | 302 |
/// Constant for infinite upper bounds (capacities). |
300 | 303 |
/// It is \c std::numeric_limits<Value>::infinity() if available, |
301 | 304 |
/// \c std::numeric_limits<Value>::max() otherwise. |
302 | 305 |
const Value INF; |
303 | 306 |
|
304 | 307 |
public: |
305 | 308 |
|
306 | 309 |
/// \name Named Template Parameters |
307 | 310 |
/// @{ |
308 | 311 |
|
309 | 312 |
template <typename T> |
310 | 313 |
struct SetLargeCostTraits : public Traits { |
311 | 314 |
typedef T LargeCost; |
312 | 315 |
}; |
313 | 316 |
|
314 | 317 |
/// \brief \ref named-templ-param "Named parameter" for setting |
315 | 318 |
/// \c LargeCost type. |
316 | 319 |
/// |
317 | 320 |
/// \ref named-templ-param "Named parameter" for setting \c LargeCost |
318 | 321 |
/// type, which is used for internal computations in the algorithm. |
319 | 322 |
/// \c Cost must be convertible to \c LargeCost. |
320 | 323 |
template <typename T> |
321 | 324 |
struct SetLargeCost |
322 | 325 |
: public CostScaling<GR, V, C, SetLargeCostTraits<T> > { |
323 | 326 |
typedef CostScaling<GR, V, C, SetLargeCostTraits<T> > Create; |
324 | 327 |
}; |
325 | 328 |
|
326 | 329 |
/// @} |
327 | 330 |
|
328 | 331 |
protected: |
329 | 332 |
|
330 | 333 |
CostScaling() {} |
331 | 334 |
|
332 | 335 |
public: |
333 | 336 |
|
334 | 337 |
/// \brief Constructor. |
335 | 338 |
/// |
336 | 339 |
/// The constructor of the class. |
337 | 340 |
/// |
338 | 341 |
/// \param graph The digraph the algorithm runs on. |
339 | 342 |
CostScaling(const GR& graph) : |
340 | 343 |
_graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph), |
341 | 344 |
_cost_map(_cost_vec), _pi_map(_pi), |
342 | 345 |
INF(std::numeric_limits<Value>::has_infinity ? |
343 | 346 |
std::numeric_limits<Value>::infinity() : |
344 | 347 |
std::numeric_limits<Value>::max()) |
345 | 348 |
{ |
346 | 349 |
// Check the number types |
347 | 350 |
LEMON_ASSERT(std::numeric_limits<Value>::is_signed, |
348 | 351 |
"The flow type of CostScaling must be signed"); |
349 | 352 |
LEMON_ASSERT(std::numeric_limits<Cost>::is_signed, |
350 | 353 |
"The cost type of CostScaling must be signed"); |
351 | 354 |
|
352 | 355 |
// Reset data structures |
353 | 356 |
reset(); |
354 | 357 |
} |
355 | 358 |
|
356 | 359 |
/// \name Parameters |
357 | 360 |
/// The parameters of the algorithm can be specified using these |
358 | 361 |
/// functions. |
359 | 362 |
|
360 | 363 |
/// @{ |
361 | 364 |
|
362 | 365 |
/// \brief Set the lower bounds on the arcs. |
363 | 366 |
/// |
364 | 367 |
/// This function sets the lower bounds on the arcs. |
365 | 368 |
/// If it is not used before calling \ref run(), the lower bounds |
366 | 369 |
/// will be set to zero on all arcs. |
367 | 370 |
/// |
368 | 371 |
/// \param map An arc map storing the lower bounds. |
369 | 372 |
/// Its \c Value type must be convertible to the \c Value type |
370 | 373 |
/// of the algorithm. |
371 | 374 |
/// |
372 | 375 |
/// \return <tt>(*this)</tt> |
373 | 376 |
template <typename LowerMap> |
374 | 377 |
CostScaling& lowerMap(const LowerMap& map) { |
375 | 378 |
_have_lower = true; |
376 | 379 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
377 | 380 |
_lower[_arc_idf[a]] = map[a]; |
378 | 381 |
_lower[_arc_idb[a]] = map[a]; |
379 | 382 |
} |
380 | 383 |
return *this; |
381 | 384 |
} |
382 | 385 |
|
383 | 386 |
/// \brief Set the upper bounds (capacities) on the arcs. |
384 | 387 |
/// |
385 | 388 |
/// This function sets the upper bounds (capacities) on the arcs. |
386 | 389 |
/// If it is not used before calling \ref run(), the upper bounds |
387 | 390 |
/// will be set to \ref INF on all arcs (i.e. the flow value will be |
388 | 391 |
/// unbounded from above). |
389 | 392 |
/// |
390 | 393 |
/// \param map An arc map storing the upper bounds. |
391 | 394 |
/// Its \c Value type must be convertible to the \c Value type |
392 | 395 |
/// of the algorithm. |
393 | 396 |
/// |
394 | 397 |
/// \return <tt>(*this)</tt> |
395 | 398 |
template<typename UpperMap> |
396 | 399 |
CostScaling& upperMap(const UpperMap& map) { |
397 | 400 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
398 | 401 |
_upper[_arc_idf[a]] = map[a]; |
399 | 402 |
} |
400 | 403 |
return *this; |
401 | 404 |
} |
402 | 405 |
|
403 | 406 |
/// \brief Set the costs of the arcs. |
404 | 407 |
/// |
405 | 408 |
/// This function sets the costs of the arcs. |
406 | 409 |
/// If it is not used before calling \ref run(), the costs |
407 | 410 |
/// will be set to \c 1 on all arcs. |
408 | 411 |
/// |
409 | 412 |
/// \param map An arc map storing the costs. |
410 | 413 |
/// Its \c Value type must be convertible to the \c Cost type |
411 | 414 |
/// of the algorithm. |
412 | 415 |
/// |
413 | 416 |
/// \return <tt>(*this)</tt> |
414 | 417 |
template<typename CostMap> |
415 | 418 |
CostScaling& costMap(const CostMap& map) { |
416 | 419 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
417 | 420 |
_scost[_arc_idf[a]] = map[a]; |
418 | 421 |
_scost[_arc_idb[a]] = -map[a]; |
419 | 422 |
} |
420 | 423 |
return *this; |
421 | 424 |
} |
422 | 425 |
|
423 | 426 |
/// \brief Set the supply values of the nodes. |
424 | 427 |
/// |
425 | 428 |
/// This function sets the supply values of the nodes. |
426 | 429 |
/// If neither this function nor \ref stSupply() is used before |
427 | 430 |
/// calling \ref run(), the supply of each node will be set to zero. |
428 | 431 |
/// |
429 | 432 |
/// \param map A node map storing the supply values. |
430 | 433 |
/// Its \c Value type must be convertible to the \c Value type |
431 | 434 |
/// of the algorithm. |
432 | 435 |
/// |
433 | 436 |
/// \return <tt>(*this)</tt> |
434 | 437 |
template<typename SupplyMap> |
435 | 438 |
CostScaling& supplyMap(const SupplyMap& map) { |
436 | 439 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
437 | 440 |
_supply[_node_id[n]] = map[n]; |
438 | 441 |
} |
439 | 442 |
return *this; |
440 | 443 |
} |
441 | 444 |
|
442 | 445 |
/// \brief Set single source and target nodes and a supply value. |
443 | 446 |
/// |
444 | 447 |
/// This function sets a single source node and a single target node |
445 | 448 |
/// and the required flow value. |
446 | 449 |
/// If neither this function nor \ref supplyMap() is used before |
447 | 450 |
/// calling \ref run(), the supply of each node will be set to zero. |
448 | 451 |
/// |
449 | 452 |
/// Using this function has the same effect as using \ref supplyMap() |
450 |
/// with |
|
453 |
/// with a map in which \c k is assigned to \c s, \c -k is |
|
451 | 454 |
/// assigned to \c t and all other nodes have zero supply value. |
452 | 455 |
/// |
453 | 456 |
/// \param s The source node. |
454 | 457 |
/// \param t The target node. |
455 | 458 |
/// \param k The required amount of flow from node \c s to node \c t |
456 | 459 |
/// (i.e. the supply of \c s and the demand of \c t). |
457 | 460 |
/// |
458 | 461 |
/// \return <tt>(*this)</tt> |
459 | 462 |
CostScaling& stSupply(const Node& s, const Node& t, Value k) { |
460 | 463 |
for (int i = 0; i != _res_node_num; ++i) { |
461 | 464 |
_supply[i] = 0; |
462 | 465 |
} |
463 | 466 |
_supply[_node_id[s]] = k; |
464 | 467 |
_supply[_node_id[t]] = -k; |
465 | 468 |
return *this; |
466 | 469 |
} |
467 | 470 |
|
468 | 471 |
/// @} |
469 | 472 |
|
470 | 473 |
/// \name Execution control |
471 | 474 |
/// The algorithm can be executed using \ref run(). |
472 | 475 |
|
473 | 476 |
/// @{ |
474 | 477 |
|
475 | 478 |
/// \brief Run the algorithm. |
476 | 479 |
/// |
477 | 480 |
/// This function runs the algorithm. |
478 | 481 |
/// The paramters can be specified using functions \ref lowerMap(), |
479 | 482 |
/// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply(). |
480 | 483 |
/// For example, |
481 | 484 |
/// \code |
482 | 485 |
/// CostScaling<ListDigraph> cs(graph); |
483 | 486 |
/// cs.lowerMap(lower).upperMap(upper).costMap(cost) |
484 | 487 |
/// .supplyMap(sup).run(); |
485 | 488 |
/// \endcode |
486 | 489 |
/// |
487 | 490 |
/// This function can be called more than once. All the given parameters |
488 | 491 |
/// are kept for the next call, unless \ref resetParams() or \ref reset() |
489 | 492 |
/// is used, thus only the modified parameters have to be set again. |
490 | 493 |
/// If the underlying digraph was also modified after the construction |
491 | 494 |
/// of the class (or the last \ref reset() call), then the \ref reset() |
492 | 495 |
/// function must be called. |
493 | 496 |
/// |
494 | 497 |
/// \param method The internal method that will be used in the |
495 | 498 |
/// algorithm. For more information, see \ref Method. |
496 | 499 |
/// \param factor The cost scaling factor. It must be larger than one. |
497 | 500 |
/// |
498 | 501 |
/// \return \c INFEASIBLE if no feasible flow exists, |
499 | 502 |
/// \n \c OPTIMAL if the problem has optimal solution |
500 | 503 |
/// (i.e. it is feasible and bounded), and the algorithm has found |
501 | 504 |
/// optimal flow and node potentials (primal and dual solutions), |
502 | 505 |
/// \n \c UNBOUNDED if the digraph contains an arc of negative cost |
503 | 506 |
/// and infinite upper bound. It means that the objective function |
504 | 507 |
/// is unbounded on that arc, however, note that it could actually be |
505 | 508 |
/// bounded over the feasible flows, but this algroithm cannot handle |
506 | 509 |
/// these cases. |
507 | 510 |
/// |
508 | 511 |
/// \see ProblemType, Method |
509 | 512 |
/// \see resetParams(), reset() |
510 | 513 |
ProblemType run(Method method = PARTIAL_AUGMENT, int factor = 8) { |
511 | 514 |
_alpha = factor; |
512 | 515 |
ProblemType pt = init(); |
513 | 516 |
if (pt != OPTIMAL) return pt; |
514 | 517 |
start(method); |
515 | 518 |
return OPTIMAL; |
516 | 519 |
} |
517 | 520 |
|
518 | 521 |
/// \brief Reset all the parameters that have been given before. |
519 | 522 |
/// |
520 | 523 |
/// This function resets all the paramaters that have been given |
521 | 524 |
/// before using functions \ref lowerMap(), \ref upperMap(), |
522 | 525 |
/// \ref costMap(), \ref supplyMap(), \ref stSupply(). |
523 | 526 |
/// |
524 | 527 |
/// It is useful for multiple \ref run() calls. Basically, all the given |
525 | 528 |
/// parameters are kept for the next \ref run() call, unless |
526 | 529 |
/// \ref resetParams() or \ref reset() is used. |
527 | 530 |
/// If the underlying digraph was also modified after the construction |
528 | 531 |
/// of the class or the last \ref reset() call, then the \ref reset() |
529 | 532 |
/// function must be used, otherwise \ref resetParams() is sufficient. |
530 | 533 |
/// |
531 | 534 |
/// For example, |
532 | 535 |
/// \code |
533 | 536 |
/// CostScaling<ListDigraph> cs(graph); |
534 | 537 |
/// |
535 | 538 |
/// // First run |
536 | 539 |
/// cs.lowerMap(lower).upperMap(upper).costMap(cost) |
537 | 540 |
/// .supplyMap(sup).run(); |
538 | 541 |
/// |
539 | 542 |
/// // Run again with modified cost map (resetParams() is not called, |
540 | 543 |
/// // so only the cost map have to be set again) |
541 | 544 |
/// cost[e] += 100; |
542 | 545 |
/// cs.costMap(cost).run(); |
543 | 546 |
/// |
544 | 547 |
/// // Run again from scratch using resetParams() |
545 | 548 |
/// // (the lower bounds will be set to zero on all arcs) |
546 | 549 |
/// cs.resetParams(); |
547 | 550 |
/// cs.upperMap(capacity).costMap(cost) |
548 | 551 |
/// .supplyMap(sup).run(); |
549 | 552 |
/// \endcode |
550 | 553 |
/// |
551 | 554 |
/// \return <tt>(*this)</tt> |
552 | 555 |
/// |
553 | 556 |
/// \see reset(), run() |
554 | 557 |
CostScaling& resetParams() { |
555 | 558 |
for (int i = 0; i != _res_node_num; ++i) { |
556 | 559 |
_supply[i] = 0; |
557 | 560 |
} |
558 | 561 |
int limit = _first_out[_root]; |
559 | 562 |
for (int j = 0; j != limit; ++j) { |
560 | 563 |
_lower[j] = 0; |
561 | 564 |
_upper[j] = INF; |
562 | 565 |
_scost[j] = _forward[j] ? 1 : -1; |
563 | 566 |
} |
564 | 567 |
for (int j = limit; j != _res_arc_num; ++j) { |
565 | 568 |
_lower[j] = 0; |
566 | 569 |
_upper[j] = INF; |
567 | 570 |
_scost[j] = 0; |
568 | 571 |
_scost[_reverse[j]] = 0; |
569 | 572 |
} |
570 | 573 |
_have_lower = false; |
571 | 574 |
return *this; |
572 | 575 |
} |
573 | 576 |
|
574 | 577 |
/// \brief Reset all the parameters that have been given before. |
575 | 578 |
/// |
576 | 579 |
/// This function resets all the paramaters that have been given |
577 | 580 |
/// before using functions \ref lowerMap(), \ref upperMap(), |
578 | 581 |
/// \ref costMap(), \ref supplyMap(), \ref stSupply(). |
579 | 582 |
/// |
580 | 583 |
/// It is useful for multiple run() calls. If this function is not |
581 | 584 |
/// used, all the parameters given before are kept for the next |
582 | 585 |
/// \ref run() call. |
583 | 586 |
/// However, the underlying digraph must not be modified after this |
584 | 587 |
/// class have been constructed, since it copies and extends the graph. |
585 | 588 |
/// \return <tt>(*this)</tt> |
586 | 589 |
CostScaling& reset() { |
587 | 590 |
// Resize vectors |
588 | 591 |
_node_num = countNodes(_graph); |
589 | 592 |
_arc_num = countArcs(_graph); |
590 | 593 |
_res_node_num = _node_num + 1; |
591 | 594 |
_res_arc_num = 2 * (_arc_num + _node_num); |
592 | 595 |
_root = _node_num; |
593 | 596 |
|
594 | 597 |
_first_out.resize(_res_node_num + 1); |
595 | 598 |
_forward.resize(_res_arc_num); |
596 | 599 |
_source.resize(_res_arc_num); |
597 | 600 |
_target.resize(_res_arc_num); |
598 | 601 |
_reverse.resize(_res_arc_num); |
599 | 602 |
|
600 | 603 |
_lower.resize(_res_arc_num); |
601 | 604 |
_upper.resize(_res_arc_num); |
602 | 605 |
_scost.resize(_res_arc_num); |
603 | 606 |
_supply.resize(_res_node_num); |
604 | 607 |
|
605 | 608 |
_res_cap.resize(_res_arc_num); |
606 | 609 |
_cost.resize(_res_arc_num); |
607 | 610 |
_pi.resize(_res_node_num); |
608 | 611 |
_excess.resize(_res_node_num); |
609 | 612 |
_next_out.resize(_res_node_num); |
610 | 613 |
|
611 | 614 |
_arc_vec.reserve(_res_arc_num); |
612 | 615 |
_cost_vec.reserve(_res_arc_num); |
613 | 616 |
|
614 | 617 |
// Copy the graph |
615 | 618 |
int i = 0, j = 0, k = 2 * _arc_num + _node_num; |
616 | 619 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
617 | 620 |
_node_id[n] = i; |
618 | 621 |
} |
619 | 622 |
i = 0; |
620 | 623 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
621 | 624 |
_first_out[i] = j; |
622 | 625 |
for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
623 | 626 |
_arc_idf[a] = j; |
624 | 627 |
_forward[j] = true; |
625 | 628 |
_source[j] = i; |
626 | 629 |
_target[j] = _node_id[_graph.runningNode(a)]; |
627 | 630 |
} |
628 | 631 |
for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
629 | 632 |
_arc_idb[a] = j; |
630 | 633 |
_forward[j] = false; |
631 | 634 |
_source[j] = i; |
632 | 635 |
_target[j] = _node_id[_graph.runningNode(a)]; |
633 | 636 |
} |
634 | 637 |
_forward[j] = false; |
635 | 638 |
_source[j] = i; |
636 | 639 |
_target[j] = _root; |
637 | 640 |
_reverse[j] = k; |
638 | 641 |
_forward[k] = true; |
639 | 642 |
_source[k] = _root; |
640 | 643 |
_target[k] = i; |
641 | 644 |
_reverse[k] = j; |
642 | 645 |
++j; ++k; |
643 | 646 |
} |
644 | 647 |
_first_out[i] = j; |
645 | 648 |
_first_out[_res_node_num] = k; |
646 | 649 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
647 | 650 |
int fi = _arc_idf[a]; |
648 | 651 |
int bi = _arc_idb[a]; |
649 | 652 |
_reverse[fi] = bi; |
650 | 653 |
_reverse[bi] = fi; |
651 | 654 |
} |
652 | 655 |
|
653 | 656 |
// Reset parameters |
654 | 657 |
resetParams(); |
655 | 658 |
return *this; |
656 | 659 |
} |
657 | 660 |
|
658 | 661 |
/// @} |
659 | 662 |
|
660 | 663 |
/// \name Query Functions |
661 | 664 |
/// The results of the algorithm can be obtained using these |
662 | 665 |
/// functions.\n |
663 | 666 |
/// The \ref run() function must be called before using them. |
664 | 667 |
|
665 | 668 |
/// @{ |
666 | 669 |
|
667 | 670 |
/// \brief Return the total cost of the found flow. |
668 | 671 |
/// |
669 | 672 |
/// This function returns the total cost of the found flow. |
670 | 673 |
/// Its complexity is O(e). |
671 | 674 |
/// |
672 | 675 |
/// \note The return type of the function can be specified as a |
673 | 676 |
/// template parameter. For example, |
674 | 677 |
/// \code |
675 | 678 |
/// cs.totalCost<double>(); |
676 | 679 |
/// \endcode |
677 | 680 |
/// It is useful if the total cost cannot be stored in the \c Cost |
678 | 681 |
/// type of the algorithm, which is the default return type of the |
679 | 682 |
/// function. |
680 | 683 |
/// |
681 | 684 |
/// \pre \ref run() must be called before using this function. |
682 | 685 |
template <typename Number> |
683 | 686 |
Number totalCost() const { |
684 | 687 |
Number c = 0; |
685 | 688 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
686 | 689 |
int i = _arc_idb[a]; |
687 | 690 |
c += static_cast<Number>(_res_cap[i]) * |
688 | 691 |
(-static_cast<Number>(_scost[i])); |
689 | 692 |
} |
690 | 693 |
return c; |
691 | 694 |
} |
692 | 695 |
|
693 | 696 |
#ifndef DOXYGEN |
694 | 697 |
Cost totalCost() const { |
695 | 698 |
return totalCost<Cost>(); |
696 | 699 |
} |
697 | 700 |
#endif |
698 | 701 |
|
699 | 702 |
/// \brief Return the flow on the given arc. |
700 | 703 |
/// |
701 | 704 |
/// This function returns the flow on the given arc. |
702 | 705 |
/// |
703 | 706 |
/// \pre \ref run() must be called before using this function. |
704 | 707 |
Value flow(const Arc& a) const { |
705 | 708 |
return _res_cap[_arc_idb[a]]; |
706 | 709 |
} |
707 | 710 |
|
708 | 711 |
/// \brief Return the flow map (the primal solution). |
709 | 712 |
/// |
710 | 713 |
/// This function copies the flow value on each arc into the given |
711 | 714 |
/// map. The \c Value type of the algorithm must be convertible to |
712 | 715 |
/// the \c Value type of the map. |
713 | 716 |
/// |
714 | 717 |
/// \pre \ref run() must be called before using this function. |
715 | 718 |
template <typename FlowMap> |
716 | 719 |
void flowMap(FlowMap &map) const { |
717 | 720 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
718 | 721 |
map.set(a, _res_cap[_arc_idb[a]]); |
719 | 722 |
} |
720 | 723 |
} |
721 | 724 |
|
722 | 725 |
/// \brief Return the potential (dual value) of the given node. |
723 | 726 |
/// |
724 | 727 |
/// This function returns the potential (dual value) of the |
725 | 728 |
/// given node. |
726 | 729 |
/// |
727 | 730 |
/// \pre \ref run() must be called before using this function. |
728 | 731 |
Cost potential(const Node& n) const { |
729 | 732 |
return static_cast<Cost>(_pi[_node_id[n]]); |
730 | 733 |
} |
731 | 734 |
|
732 | 735 |
/// \brief Return the potential map (the dual solution). |
733 | 736 |
/// |
734 | 737 |
/// This function copies the potential (dual value) of each node |
735 | 738 |
/// into the given map. |
736 | 739 |
/// The \c Cost type of the algorithm must be convertible to the |
737 | 740 |
/// \c Value type of the map. |
738 | 741 |
/// |
739 | 742 |
/// \pre \ref run() must be called before using this function. |
740 | 743 |
template <typename PotentialMap> |
741 | 744 |
void potentialMap(PotentialMap &map) const { |
742 | 745 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
743 | 746 |
map.set(n, static_cast<Cost>(_pi[_node_id[n]])); |
744 | 747 |
} |
745 | 748 |
} |
746 | 749 |
|
747 | 750 |
/// @} |
748 | 751 |
|
749 | 752 |
private: |
750 | 753 |
|
751 | 754 |
// Initialize the algorithm |
752 | 755 |
ProblemType init() { |
753 | 756 |
if (_res_node_num <= 1) return INFEASIBLE; |
754 | 757 |
|
755 | 758 |
// Check the sum of supply values |
756 | 759 |
_sum_supply = 0; |
757 | 760 |
for (int i = 0; i != _root; ++i) { |
758 | 761 |
_sum_supply += _supply[i]; |
759 | 762 |
} |
760 | 763 |
if (_sum_supply > 0) return INFEASIBLE; |
761 | 764 |
|
762 | 765 |
|
763 | 766 |
// Initialize vectors |
764 | 767 |
for (int i = 0; i != _res_node_num; ++i) { |
765 | 768 |
_pi[i] = 0; |
766 | 769 |
_excess[i] = _supply[i]; |
767 | 770 |
} |
768 | 771 |
|
769 | 772 |
// Remove infinite upper bounds and check negative arcs |
770 | 773 |
const Value MAX = std::numeric_limits<Value>::max(); |
771 | 774 |
int last_out; |
772 | 775 |
if (_have_lower) { |
773 | 776 |
for (int i = 0; i != _root; ++i) { |
774 | 777 |
last_out = _first_out[i+1]; |
775 | 778 |
for (int j = _first_out[i]; j != last_out; ++j) { |
776 | 779 |
if (_forward[j]) { |
777 | 780 |
Value c = _scost[j] < 0 ? _upper[j] : _lower[j]; |
778 | 781 |
if (c >= MAX) return UNBOUNDED; |
779 | 782 |
_excess[i] -= c; |
780 | 783 |
_excess[_target[j]] += c; |
781 | 784 |
} |
782 | 785 |
} |
783 | 786 |
} |
784 | 787 |
} else { |
785 | 788 |
for (int i = 0; i != _root; ++i) { |
786 | 789 |
last_out = _first_out[i+1]; |
787 | 790 |
for (int j = _first_out[i]; j != last_out; ++j) { |
788 | 791 |
if (_forward[j] && _scost[j] < 0) { |
789 | 792 |
Value c = _upper[j]; |
790 | 793 |
if (c >= MAX) return UNBOUNDED; |
791 | 794 |
_excess[i] -= c; |
792 | 795 |
_excess[_target[j]] += c; |
793 | 796 |
} |
794 | 797 |
} |
795 | 798 |
} |
796 | 799 |
} |
797 | 800 |
Value ex, max_cap = 0; |
798 | 801 |
for (int i = 0; i != _res_node_num; ++i) { |
799 | 802 |
ex = _excess[i]; |
800 | 803 |
_excess[i] = 0; |
801 | 804 |
if (ex < 0) max_cap -= ex; |
802 | 805 |
} |
803 | 806 |
for (int j = 0; j != _res_arc_num; ++j) { |
804 | 807 |
if (_upper[j] >= MAX) _upper[j] = max_cap; |
805 | 808 |
} |
806 | 809 |
|
807 | 810 |
// Initialize the large cost vector and the epsilon parameter |
808 | 811 |
_epsilon = 0; |
809 | 812 |
LargeCost lc; |
810 | 813 |
for (int i = 0; i != _root; ++i) { |
811 | 814 |
last_out = _first_out[i+1]; |
812 | 815 |
for (int j = _first_out[i]; j != last_out; ++j) { |
813 | 816 |
lc = static_cast<LargeCost>(_scost[j]) * _res_node_num * _alpha; |
814 | 817 |
_cost[j] = lc; |
815 | 818 |
if (lc > _epsilon) _epsilon = lc; |
816 | 819 |
} |
817 | 820 |
} |
818 | 821 |
_epsilon /= _alpha; |
819 | 822 |
|
820 | 823 |
// Initialize maps for Circulation and remove non-zero lower bounds |
821 | 824 |
ConstMap<Arc, Value> low(0); |
822 | 825 |
typedef typename Digraph::template ArcMap<Value> ValueArcMap; |
823 | 826 |
typedef typename Digraph::template NodeMap<Value> ValueNodeMap; |
824 | 827 |
ValueArcMap cap(_graph), flow(_graph); |
825 | 828 |
ValueNodeMap sup(_graph); |
826 | 829 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
827 | 830 |
sup[n] = _supply[_node_id[n]]; |
828 | 831 |
} |
829 | 832 |
if (_have_lower) { |
830 | 833 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
831 | 834 |
int j = _arc_idf[a]; |
832 | 835 |
Value c = _lower[j]; |
833 | 836 |
cap[a] = _upper[j] - c; |
834 | 837 |
sup[_graph.source(a)] -= c; |
835 | 838 |
sup[_graph.target(a)] += c; |
836 | 839 |
} |
837 | 840 |
} else { |
838 | 841 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
839 | 842 |
cap[a] = _upper[_arc_idf[a]]; |
840 | 843 |
} |
841 | 844 |
} |
842 | 845 |
|
843 | 846 |
_sup_node_num = 0; |
844 | 847 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
845 | 848 |
if (sup[n] > 0) ++_sup_node_num; |
846 | 849 |
} |
847 | 850 |
|
848 | 851 |
// Find a feasible flow using Circulation |
849 | 852 |
Circulation<Digraph, ConstMap<Arc, Value>, ValueArcMap, ValueNodeMap> |
850 | 853 |
circ(_graph, low, cap, sup); |
851 | 854 |
if (!circ.flowMap(flow).run()) return INFEASIBLE; |
852 | 855 |
|
853 | 856 |
// Set residual capacities and handle GEQ supply type |
854 | 857 |
if (_sum_supply < 0) { |
855 | 858 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
856 | 859 |
Value fa = flow[a]; |
857 | 860 |
_res_cap[_arc_idf[a]] = cap[a] - fa; |
858 | 861 |
_res_cap[_arc_idb[a]] = fa; |
859 | 862 |
sup[_graph.source(a)] -= fa; |
860 | 863 |
sup[_graph.target(a)] += fa; |
861 | 864 |
} |
862 | 865 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
863 | 866 |
_excess[_node_id[n]] = sup[n]; |
864 | 867 |
} |
865 | 868 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
866 | 869 |
int u = _target[a]; |
867 | 870 |
int ra = _reverse[a]; |
868 | 871 |
_res_cap[a] = -_sum_supply + 1; |
869 | 872 |
_res_cap[ra] = -_excess[u]; |
870 | 873 |
_cost[a] = 0; |
871 | 874 |
_cost[ra] = 0; |
872 | 875 |
_excess[u] = 0; |
873 | 876 |
} |
874 | 877 |
} else { |
875 | 878 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
876 | 879 |
Value fa = flow[a]; |
877 | 880 |
_res_cap[_arc_idf[a]] = cap[a] - fa; |
878 | 881 |
_res_cap[_arc_idb[a]] = fa; |
879 | 882 |
} |
880 | 883 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
881 | 884 |
int ra = _reverse[a]; |
882 | 885 |
_res_cap[a] = 0; |
883 | 886 |
_res_cap[ra] = 0; |
884 | 887 |
_cost[a] = 0; |
885 | 888 |
_cost[ra] = 0; |
886 | 889 |
} |
887 | 890 |
} |
888 | 891 |
|
889 | 892 |
return OPTIMAL; |
890 | 893 |
} |
891 | 894 |
|
892 | 895 |
// Execute the algorithm and transform the results |
893 | 896 |
void start(Method method) { |
894 | 897 |
// Maximum path length for partial augment |
895 | 898 |
const int MAX_PATH_LENGTH = 4; |
896 | 899 |
|
897 | 900 |
// Initialize data structures for buckets |
898 | 901 |
_max_rank = _alpha * _res_node_num; |
899 | 902 |
_buckets.resize(_max_rank); |
900 | 903 |
_bucket_next.resize(_res_node_num + 1); |
901 | 904 |
_bucket_prev.resize(_res_node_num + 1); |
902 | 905 |
_rank.resize(_res_node_num + 1); |
903 | 906 |
|
904 | 907 |
// Execute the algorithm |
905 | 908 |
switch (method) { |
906 | 909 |
case PUSH: |
907 | 910 |
startPush(); |
908 | 911 |
break; |
909 | 912 |
case AUGMENT: |
910 | 913 |
startAugment(); |
911 | 914 |
break; |
912 | 915 |
case PARTIAL_AUGMENT: |
913 | 916 |
startAugment(MAX_PATH_LENGTH); |
914 | 917 |
break; |
915 | 918 |
} |
916 | 919 |
|
917 | 920 |
// Compute node potentials for the original costs |
918 | 921 |
_arc_vec.clear(); |
919 | 922 |
_cost_vec.clear(); |
920 | 923 |
for (int j = 0; j != _res_arc_num; ++j) { |
921 | 924 |
if (_res_cap[j] > 0) { |
922 | 925 |
_arc_vec.push_back(IntPair(_source[j], _target[j])); |
923 | 926 |
_cost_vec.push_back(_scost[j]); |
924 | 927 |
} |
925 | 928 |
} |
926 | 929 |
_sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end()); |
927 | 930 |
|
928 | 931 |
typename BellmanFord<StaticDigraph, LargeCostArcMap> |
929 | 932 |
::template SetDistMap<LargeCostNodeMap>::Create bf(_sgr, _cost_map); |
930 | 933 |
bf.distMap(_pi_map); |
931 | 934 |
bf.init(0); |
932 | 935 |
bf.start(); |
933 | 936 |
|
934 | 937 |
// Handle non-zero lower bounds |
935 | 938 |
if (_have_lower) { |
936 | 939 |
int limit = _first_out[_root]; |
937 | 940 |
for (int j = 0; j != limit; ++j) { |
938 | 941 |
if (!_forward[j]) _res_cap[j] += _lower[j]; |
939 | 942 |
} |
940 | 943 |
} |
941 | 944 |
} |
942 | 945 |
|
943 | 946 |
// Initialize a cost scaling phase |
944 | 947 |
void initPhase() { |
945 | 948 |
// Saturate arcs not satisfying the optimality condition |
946 | 949 |
for (int u = 0; u != _res_node_num; ++u) { |
947 | 950 |
int last_out = _first_out[u+1]; |
948 | 951 |
LargeCost pi_u = _pi[u]; |
949 | 952 |
for (int a = _first_out[u]; a != last_out; ++a) { |
950 | 953 |
int v = _target[a]; |
951 | 954 |
if (_res_cap[a] > 0 && _cost[a] + pi_u - _pi[v] < 0) { |
952 | 955 |
Value delta = _res_cap[a]; |
953 | 956 |
_excess[u] -= delta; |
954 | 957 |
_excess[v] += delta; |
955 | 958 |
_res_cap[a] = 0; |
956 | 959 |
_res_cap[_reverse[a]] += delta; |
957 | 960 |
} |
958 | 961 |
} |
959 | 962 |
} |
960 | 963 |
|
961 | 964 |
// Find active nodes (i.e. nodes with positive excess) |
962 | 965 |
for (int u = 0; u != _res_node_num; ++u) { |
963 | 966 |
if (_excess[u] > 0) _active_nodes.push_back(u); |
964 | 967 |
} |
965 | 968 |
|
966 | 969 |
// Initialize the next arcs |
967 | 970 |
for (int u = 0; u != _res_node_num; ++u) { |
968 | 971 |
_next_out[u] = _first_out[u]; |
969 | 972 |
} |
970 | 973 |
} |
971 | 974 |
|
972 | 975 |
// Early termination heuristic |
973 | 976 |
bool earlyTermination() { |
974 | 977 |
const double EARLY_TERM_FACTOR = 3.0; |
975 | 978 |
|
976 | 979 |
// Build a static residual graph |
977 | 980 |
_arc_vec.clear(); |
978 | 981 |
_cost_vec.clear(); |
979 | 982 |
for (int j = 0; j != _res_arc_num; ++j) { |
980 | 983 |
if (_res_cap[j] > 0) { |
981 | 984 |
_arc_vec.push_back(IntPair(_source[j], _target[j])); |
982 | 985 |
_cost_vec.push_back(_cost[j] + 1); |
983 | 986 |
} |
984 | 987 |
} |
985 | 988 |
_sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end()); |
986 | 989 |
|
987 | 990 |
// Run Bellman-Ford algorithm to check if the current flow is optimal |
988 | 991 |
BellmanFord<StaticDigraph, LargeCostArcMap> bf(_sgr, _cost_map); |
989 | 992 |
bf.init(0); |
990 | 993 |
bool done = false; |
991 | 994 |
int K = int(EARLY_TERM_FACTOR * std::sqrt(double(_res_node_num))); |
992 | 995 |
for (int i = 0; i < K && !done; ++i) { |
993 | 996 |
done = bf.processNextWeakRound(); |
994 | 997 |
} |
995 | 998 |
return done; |
996 | 999 |
} |
997 | 1000 |
|
998 | 1001 |
// Global potential update heuristic |
999 | 1002 |
void globalUpdate() { |
1000 | 1003 |
int bucket_end = _root + 1; |
1001 | 1004 |
|
1002 | 1005 |
// Initialize buckets |
1003 | 1006 |
for (int r = 0; r != _max_rank; ++r) { |
1004 | 1007 |
_buckets[r] = bucket_end; |
1005 | 1008 |
} |
1006 | 1009 |
Value total_excess = 0; |
1007 | 1010 |
for (int i = 0; i != _res_node_num; ++i) { |
1008 | 1011 |
if (_excess[i] < 0) { |
1009 | 1012 |
_rank[i] = 0; |
1010 | 1013 |
_bucket_next[i] = _buckets[0]; |
1011 | 1014 |
_bucket_prev[_buckets[0]] = i; |
1012 | 1015 |
_buckets[0] = i; |
1013 | 1016 |
} else { |
1014 | 1017 |
total_excess += _excess[i]; |
1015 | 1018 |
_rank[i] = _max_rank; |
1016 | 1019 |
} |
1017 | 1020 |
} |
1018 | 1021 |
if (total_excess == 0) return; |
1019 | 1022 |
|
1020 | 1023 |
// Search the buckets |
1021 | 1024 |
int r = 0; |
1022 | 1025 |
for ( ; r != _max_rank; ++r) { |
1023 | 1026 |
while (_buckets[r] != bucket_end) { |
1024 | 1027 |
// Remove the first node from the current bucket |
1025 | 1028 |
int u = _buckets[r]; |
1026 | 1029 |
_buckets[r] = _bucket_next[u]; |
1027 | 1030 |
|
1028 | 1031 |
// Search the incomming arcs of u |
1029 | 1032 |
LargeCost pi_u = _pi[u]; |
1030 | 1033 |
int last_out = _first_out[u+1]; |
1031 | 1034 |
for (int a = _first_out[u]; a != last_out; ++a) { |
1032 | 1035 |
int ra = _reverse[a]; |
1033 | 1036 |
if (_res_cap[ra] > 0) { |
1034 | 1037 |
int v = _source[ra]; |
1035 | 1038 |
int old_rank_v = _rank[v]; |
1036 | 1039 |
if (r < old_rank_v) { |
1037 | 1040 |
// Compute the new rank of v |
1038 | 1041 |
LargeCost nrc = (_cost[ra] + _pi[v] - pi_u) / _epsilon; |
1039 | 1042 |
int new_rank_v = old_rank_v; |
1040 | 1043 |
if (nrc < LargeCost(_max_rank)) |
1041 | 1044 |
new_rank_v = r + 1 + int(nrc); |
1042 | 1045 |
|
1043 | 1046 |
// Change the rank of v |
1044 | 1047 |
if (new_rank_v < old_rank_v) { |
1045 | 1048 |
_rank[v] = new_rank_v; |
1046 | 1049 |
_next_out[v] = _first_out[v]; |
1047 | 1050 |
|
1048 | 1051 |
// Remove v from its old bucket |
1049 | 1052 |
if (old_rank_v < _max_rank) { |
1050 | 1053 |
if (_buckets[old_rank_v] == v) { |
1051 | 1054 |
_buckets[old_rank_v] = _bucket_next[v]; |
1052 | 1055 |
} else { |
1053 | 1056 |
_bucket_next[_bucket_prev[v]] = _bucket_next[v]; |
1054 | 1057 |
_bucket_prev[_bucket_next[v]] = _bucket_prev[v]; |
1055 | 1058 |
} |
1056 | 1059 |
} |
1057 | 1060 |
|
1058 | 1061 |
// Insert v to its new bucket |
1059 | 1062 |
_bucket_next[v] = _buckets[new_rank_v]; |
1060 | 1063 |
_bucket_prev[_buckets[new_rank_v]] = v; |
1061 | 1064 |
_buckets[new_rank_v] = v; |
1062 | 1065 |
} |
1063 | 1066 |
} |
1064 | 1067 |
} |
1065 | 1068 |
} |
1066 | 1069 |
|
1067 | 1070 |
// Finish search if there are no more active nodes |
1068 | 1071 |
if (_excess[u] > 0) { |
1069 | 1072 |
total_excess -= _excess[u]; |
1070 | 1073 |
if (total_excess <= 0) break; |
1071 | 1074 |
} |
1072 | 1075 |
} |
1073 | 1076 |
if (total_excess <= 0) break; |
1074 | 1077 |
} |
1075 | 1078 |
|
1076 | 1079 |
// Relabel nodes |
1077 | 1080 |
for (int u = 0; u != _res_node_num; ++u) { |
1078 | 1081 |
int k = std::min(_rank[u], r); |
1079 | 1082 |
if (k > 0) { |
1080 | 1083 |
_pi[u] -= _epsilon * k; |
1081 | 1084 |
_next_out[u] = _first_out[u]; |
1082 | 1085 |
} |
1083 | 1086 |
} |
1084 | 1087 |
} |
1085 | 1088 |
|
1086 | 1089 |
/// Execute the algorithm performing augment and relabel operations |
1087 | 1090 |
void startAugment(int max_length = std::numeric_limits<int>::max()) { |
1088 | 1091 |
// Paramters for heuristics |
1089 | 1092 |
const int EARLY_TERM_EPSILON_LIMIT = 1000; |
1090 | 1093 |
const double GLOBAL_UPDATE_FACTOR = 3.0; |
1091 | 1094 |
|
1092 | 1095 |
const int global_update_freq = int(GLOBAL_UPDATE_FACTOR * |
1093 | 1096 |
(_res_node_num + _sup_node_num * _sup_node_num)); |
1094 | 1097 |
int next_update_limit = global_update_freq; |
1095 | 1098 |
|
1096 | 1099 |
int relabel_cnt = 0; |
1097 | 1100 |
|
1098 | 1101 |
// Perform cost scaling phases |
1099 | 1102 |
std::vector<int> path; |
1100 | 1103 |
for ( ; _epsilon >= 1; _epsilon = _epsilon < _alpha && _epsilon > 1 ? |
1101 | 1104 |
1 : _epsilon / _alpha ) |
1102 | 1105 |
{ |
1103 | 1106 |
// Early termination heuristic |
1104 | 1107 |
if (_epsilon <= EARLY_TERM_EPSILON_LIMIT) { |
1105 | 1108 |
if (earlyTermination()) break; |
1106 | 1109 |
} |
1107 | 1110 |
|
1108 | 1111 |
// Initialize current phase |
1109 | 1112 |
initPhase(); |
1110 | 1113 |
|
1111 | 1114 |
// Perform partial augment and relabel operations |
1112 | 1115 |
while (true) { |
1113 | 1116 |
// Select an active node (FIFO selection) |
1114 | 1117 |
while (_active_nodes.size() > 0 && |
1115 | 1118 |
_excess[_active_nodes.front()] <= 0) { |
1116 | 1119 |
_active_nodes.pop_front(); |
1117 | 1120 |
} |
1118 | 1121 |
if (_active_nodes.size() == 0) break; |
1119 | 1122 |
int start = _active_nodes.front(); |
1120 | 1123 |
|
1121 | 1124 |
// Find an augmenting path from the start node |
1122 | 1125 |
path.clear(); |
1123 | 1126 |
int tip = start; |
1124 | 1127 |
while (_excess[tip] >= 0 && int(path.size()) < max_length) { |
1125 | 1128 |
int u; |
1126 | 1129 |
LargeCost min_red_cost, rc, pi_tip = _pi[tip]; |
1127 | 1130 |
int last_out = _first_out[tip+1]; |
1128 | 1131 |
for (int a = _next_out[tip]; a != last_out; ++a) { |
1129 | 1132 |
u = _target[a]; |
1130 | 1133 |
if (_res_cap[a] > 0 && _cost[a] + pi_tip - _pi[u] < 0) { |
1131 | 1134 |
path.push_back(a); |
1132 | 1135 |
_next_out[tip] = a; |
1133 | 1136 |
tip = u; |
1134 | 1137 |
goto next_step; |
1135 | 1138 |
} |
1136 | 1139 |
} |
1137 | 1140 |
|
1138 | 1141 |
// Relabel tip node |
1139 | 1142 |
min_red_cost = std::numeric_limits<LargeCost>::max(); |
1140 | 1143 |
if (tip != start) { |
1141 | 1144 |
int ra = _reverse[path.back()]; |
1142 | 1145 |
min_red_cost = _cost[ra] + pi_tip - _pi[_target[ra]]; |
1143 | 1146 |
} |
1144 | 1147 |
for (int a = _first_out[tip]; a != last_out; ++a) { |
1145 | 1148 |
rc = _cost[a] + pi_tip - _pi[_target[a]]; |
1146 | 1149 |
if (_res_cap[a] > 0 && rc < min_red_cost) { |
1147 | 1150 |
min_red_cost = rc; |
1148 | 1151 |
} |
1149 | 1152 |
} |
1150 | 1153 |
_pi[tip] -= min_red_cost + _epsilon; |
1151 | 1154 |
_next_out[tip] = _first_out[tip]; |
1152 | 1155 |
++relabel_cnt; |
1153 | 1156 |
|
1154 | 1157 |
// Step back |
1155 | 1158 |
if (tip != start) { |
1156 | 1159 |
tip = _source[path.back()]; |
1157 | 1160 |
path.pop_back(); |
1158 | 1161 |
} |
1159 | 1162 |
|
1160 | 1163 |
next_step: ; |
1161 | 1164 |
} |
1162 | 1165 |
|
1163 | 1166 |
// Augment along the found path (as much flow as possible) |
1164 | 1167 |
Value delta; |
1165 | 1168 |
int pa, u, v = start; |
1166 | 1169 |
for (int i = 0; i != int(path.size()); ++i) { |
1167 | 1170 |
pa = path[i]; |
1168 | 1171 |
u = v; |
1169 | 1172 |
v = _target[pa]; |
1170 | 1173 |
delta = std::min(_res_cap[pa], _excess[u]); |
1171 | 1174 |
_res_cap[pa] -= delta; |
1172 | 1175 |
_res_cap[_reverse[pa]] += delta; |
1173 | 1176 |
_excess[u] -= delta; |
1174 | 1177 |
_excess[v] += delta; |
1175 | 1178 |
if (_excess[v] > 0 && _excess[v] <= delta) |
1176 | 1179 |
_active_nodes.push_back(v); |
1177 | 1180 |
} |
1178 | 1181 |
|
1179 | 1182 |
// Global update heuristic |
1180 | 1183 |
if (relabel_cnt >= next_update_limit) { |
1181 | 1184 |
globalUpdate(); |
1182 | 1185 |
next_update_limit += global_update_freq; |
1183 | 1186 |
} |
1184 | 1187 |
} |
1185 | 1188 |
} |
1186 | 1189 |
} |
1187 | 1190 |
|
1188 | 1191 |
/// Execute the algorithm performing push and relabel operations |
1189 | 1192 |
void startPush() { |
1190 | 1193 |
// Paramters for heuristics |
1191 | 1194 |
const int EARLY_TERM_EPSILON_LIMIT = 1000; |
1192 | 1195 |
const double GLOBAL_UPDATE_FACTOR = 2.0; |
1193 | 1196 |
|
1194 | 1197 |
const int global_update_freq = int(GLOBAL_UPDATE_FACTOR * |
1195 | 1198 |
(_res_node_num + _sup_node_num * _sup_node_num)); |
1196 | 1199 |
int next_update_limit = global_update_freq; |
1197 | 1200 |
|
1198 | 1201 |
int relabel_cnt = 0; |
1199 | 1202 |
|
1200 | 1203 |
// Perform cost scaling phases |
1201 | 1204 |
BoolVector hyper(_res_node_num, false); |
1202 | 1205 |
LargeCostVector hyper_cost(_res_node_num); |
1203 | 1206 |
for ( ; _epsilon >= 1; _epsilon = _epsilon < _alpha && _epsilon > 1 ? |
1204 | 1207 |
1 : _epsilon / _alpha ) |
1205 | 1208 |
{ |
1206 | 1209 |
// Early termination heuristic |
1207 | 1210 |
if (_epsilon <= EARLY_TERM_EPSILON_LIMIT) { |
1208 | 1211 |
if (earlyTermination()) break; |
1209 | 1212 |
} |
1210 | 1213 |
|
1211 | 1214 |
// Initialize current phase |
1212 | 1215 |
initPhase(); |
1213 | 1216 |
|
1214 | 1217 |
// Perform push and relabel operations |
1215 | 1218 |
while (_active_nodes.size() > 0) { |
1216 | 1219 |
LargeCost min_red_cost, rc, pi_n; |
1217 | 1220 |
Value delta; |
1218 | 1221 |
int n, t, a, last_out = _res_arc_num; |
1219 | 1222 |
|
1220 | 1223 |
next_node: |
1221 | 1224 |
// Select an active node (FIFO selection) |
1222 | 1225 |
n = _active_nodes.front(); |
1223 | 1226 |
last_out = _first_out[n+1]; |
1224 | 1227 |
pi_n = _pi[n]; |
1225 | 1228 |
|
1226 | 1229 |
// Perform push operations if there are admissible arcs |
1227 | 1230 |
if (_excess[n] > 0) { |
1228 | 1231 |
for (a = _next_out[n]; a != last_out; ++a) { |
1229 | 1232 |
if (_res_cap[a] > 0 && |
1230 | 1233 |
_cost[a] + pi_n - _pi[_target[a]] < 0) { |
1231 | 1234 |
delta = std::min(_res_cap[a], _excess[n]); |
1232 | 1235 |
t = _target[a]; |
1233 | 1236 |
|
1234 | 1237 |
// Push-look-ahead heuristic |
1235 | 1238 |
Value ahead = -_excess[t]; |
1236 | 1239 |
int last_out_t = _first_out[t+1]; |
1237 | 1240 |
LargeCost pi_t = _pi[t]; |
1238 | 1241 |
for (int ta = _next_out[t]; ta != last_out_t; ++ta) { |
1239 | 1242 |
if (_res_cap[ta] > 0 && |
1240 | 1243 |
_cost[ta] + pi_t - _pi[_target[ta]] < 0) |
1241 | 1244 |
ahead += _res_cap[ta]; |
1242 | 1245 |
if (ahead >= delta) break; |
1243 | 1246 |
} |
1244 | 1247 |
if (ahead < 0) ahead = 0; |
1245 | 1248 |
|
1246 | 1249 |
// Push flow along the arc |
1247 | 1250 |
if (ahead < delta && !hyper[t]) { |
1248 | 1251 |
_res_cap[a] -= ahead; |
1249 | 1252 |
_res_cap[_reverse[a]] += ahead; |
1250 | 1253 |
_excess[n] -= ahead; |
1251 | 1254 |
_excess[t] += ahead; |
1252 | 1255 |
_active_nodes.push_front(t); |
1253 | 1256 |
hyper[t] = true; |
1254 | 1257 |
hyper_cost[t] = _cost[a] + pi_n - pi_t; |
1255 | 1258 |
_next_out[n] = a; |
1256 | 1259 |
goto next_node; |
1257 | 1260 |
} else { |
1258 | 1261 |
_res_cap[a] -= delta; |
1259 | 1262 |
_res_cap[_reverse[a]] += delta; |
1260 | 1263 |
_excess[n] -= delta; |
1261 | 1264 |
_excess[t] += delta; |
1262 | 1265 |
if (_excess[t] > 0 && _excess[t] <= delta) |
1263 | 1266 |
_active_nodes.push_back(t); |
1264 | 1267 |
} |
1265 | 1268 |
|
1266 | 1269 |
if (_excess[n] == 0) { |
1267 | 1270 |
_next_out[n] = a; |
1268 | 1271 |
goto remove_nodes; |
1269 | 1272 |
} |
1270 | 1273 |
} |
1271 | 1274 |
} |
1272 | 1275 |
_next_out[n] = a; |
1273 | 1276 |
} |
1274 | 1277 |
|
1275 | 1278 |
// Relabel the node if it is still active (or hyper) |
1276 | 1279 |
if (_excess[n] > 0 || hyper[n]) { |
1277 | 1280 |
min_red_cost = hyper[n] ? -hyper_cost[n] : |
1278 | 1281 |
std::numeric_limits<LargeCost>::max(); |
1279 | 1282 |
for (int a = _first_out[n]; a != last_out; ++a) { |
1280 | 1283 |
rc = _cost[a] + pi_n - _pi[_target[a]]; |
1281 | 1284 |
if (_res_cap[a] > 0 && rc < min_red_cost) { |
1282 | 1285 |
min_red_cost = rc; |
1283 | 1286 |
} |
1284 | 1287 |
} |
1285 | 1288 |
_pi[n] -= min_red_cost + _epsilon; |
1286 | 1289 |
_next_out[n] = _first_out[n]; |
1287 | 1290 |
hyper[n] = false; |
1288 | 1291 |
++relabel_cnt; |
1289 | 1292 |
} |
1290 | 1293 |
|
1291 | 1294 |
// Remove nodes that are not active nor hyper |
1292 | 1295 |
remove_nodes: |
1293 | 1296 |
while ( _active_nodes.size() > 0 && |
1294 | 1297 |
_excess[_active_nodes.front()] <= 0 && |
1295 | 1298 |
!hyper[_active_nodes.front()] ) { |
1296 | 1299 |
_active_nodes.pop_front(); |
1297 | 1300 |
} |
1298 | 1301 |
|
1299 | 1302 |
// Global update heuristic |
1300 | 1303 |
if (relabel_cnt >= next_update_limit) { |
1301 | 1304 |
globalUpdate(); |
1302 | 1305 |
for (int u = 0; u != _res_node_num; ++u) |
1303 | 1306 |
hyper[u] = false; |
1304 | 1307 |
next_update_limit += global_update_freq; |
1305 | 1308 |
} |
1306 | 1309 |
} |
1307 | 1310 |
} |
1308 | 1311 |
} |
1309 | 1312 |
|
1310 | 1313 |
}; //class CostScaling |
1311 | 1314 |
|
1312 | 1315 |
///@} |
1313 | 1316 |
|
1314 | 1317 |
} //namespace lemon |
1315 | 1318 |
|
1316 | 1319 |
#endif //LEMON_COST_SCALING_H |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#ifndef LEMON_CYCLE_CANCELING_H |
20 | 20 |
#define LEMON_CYCLE_CANCELING_H |
21 | 21 |
|
22 | 22 |
/// \ingroup min_cost_flow_algs |
23 | 23 |
/// \file |
24 | 24 |
/// \brief Cycle-canceling algorithms for finding a minimum cost flow. |
25 | 25 |
|
26 | 26 |
#include <vector> |
27 | 27 |
#include <limits> |
28 | 28 |
|
29 | 29 |
#include <lemon/core.h> |
30 | 30 |
#include <lemon/maps.h> |
31 | 31 |
#include <lemon/path.h> |
32 | 32 |
#include <lemon/math.h> |
33 | 33 |
#include <lemon/static_graph.h> |
34 | 34 |
#include <lemon/adaptors.h> |
35 | 35 |
#include <lemon/circulation.h> |
36 | 36 |
#include <lemon/bellman_ford.h> |
37 | 37 |
#include <lemon/howard_mmc.h> |
38 | 38 |
|
39 | 39 |
namespace lemon { |
40 | 40 |
|
41 | 41 |
/// \addtogroup min_cost_flow_algs |
42 | 42 |
/// @{ |
43 | 43 |
|
44 | 44 |
/// \brief Implementation of cycle-canceling algorithms for |
45 | 45 |
/// finding a \ref min_cost_flow "minimum cost flow". |
46 | 46 |
/// |
47 | 47 |
/// \ref CycleCanceling implements three different cycle-canceling |
48 | 48 |
/// algorithms for finding a \ref min_cost_flow "minimum cost flow" |
49 | 49 |
/// \ref amo93networkflows, \ref klein67primal, |
50 | 50 |
/// \ref goldberg89cyclecanceling. |
51 | 51 |
/// The most efficent one (both theoretically and practically) |
52 | 52 |
/// is the \ref CANCEL_AND_TIGHTEN "Cancel and Tighten" algorithm, |
53 | 53 |
/// thus it is the default method. |
54 | 54 |
/// It is strongly polynomial, but in practice, it is typically much |
55 | 55 |
/// slower than the scaling algorithms and NetworkSimplex. |
56 | 56 |
/// |
57 | 57 |
/// Most of the parameters of the problem (except for the digraph) |
58 | 58 |
/// can be given using separate functions, and the algorithm can be |
59 | 59 |
/// executed using the \ref run() function. If some parameters are not |
60 | 60 |
/// specified, then default values will be used. |
61 | 61 |
/// |
62 | 62 |
/// \tparam GR The digraph type the algorithm runs on. |
63 | 63 |
/// \tparam V The number type used for flow amounts, capacity bounds |
64 | 64 |
/// and supply values in the algorithm. By default, it is \c int. |
65 | 65 |
/// \tparam C The number type used for costs and potentials in the |
66 | 66 |
/// algorithm. By default, it is the same as \c V. |
67 | 67 |
/// |
68 | 68 |
/// \warning Both number types must be signed and all input data must |
69 | 69 |
/// be integer. |
70 |
/// \warning This algorithm does not support negative costs for such |
|
71 |
/// arcs that have infinite upper bound. |
|
70 |
/// \warning This algorithm does not support negative costs for |
|
71 |
/// arcs having infinite upper bound. |
|
72 | 72 |
/// |
73 | 73 |
/// \note For more information about the three available methods, |
74 | 74 |
/// see \ref Method. |
75 | 75 |
#ifdef DOXYGEN |
76 | 76 |
template <typename GR, typename V, typename C> |
77 | 77 |
#else |
78 | 78 |
template <typename GR, typename V = int, typename C = V> |
79 | 79 |
#endif |
80 | 80 |
class CycleCanceling |
81 | 81 |
{ |
82 | 82 |
public: |
83 | 83 |
|
84 | 84 |
/// The type of the digraph |
85 | 85 |
typedef GR Digraph; |
86 | 86 |
/// The type of the flow amounts, capacity bounds and supply values |
87 | 87 |
typedef V Value; |
88 | 88 |
/// The type of the arc costs |
89 | 89 |
typedef C Cost; |
90 | 90 |
|
91 | 91 |
public: |
92 | 92 |
|
93 | 93 |
/// \brief Problem type constants for the \c run() function. |
94 | 94 |
/// |
95 | 95 |
/// Enum type containing the problem type constants that can be |
96 | 96 |
/// returned by the \ref run() function of the algorithm. |
97 | 97 |
enum ProblemType { |
98 | 98 |
/// The problem has no feasible solution (flow). |
99 | 99 |
INFEASIBLE, |
100 | 100 |
/// The problem has optimal solution (i.e. it is feasible and |
101 | 101 |
/// bounded), and the algorithm has found optimal flow and node |
102 | 102 |
/// potentials (primal and dual solutions). |
103 | 103 |
OPTIMAL, |
104 | 104 |
/// The digraph contains an arc of negative cost and infinite |
105 | 105 |
/// upper bound. It means that the objective function is unbounded |
106 | 106 |
/// on that arc, however, note that it could actually be bounded |
107 | 107 |
/// over the feasible flows, but this algroithm cannot handle |
108 | 108 |
/// these cases. |
109 | 109 |
UNBOUNDED |
110 | 110 |
}; |
111 | 111 |
|
112 | 112 |
/// \brief Constants for selecting the used method. |
113 | 113 |
/// |
114 | 114 |
/// Enum type containing constants for selecting the used method |
115 | 115 |
/// for the \ref run() function. |
116 | 116 |
/// |
117 | 117 |
/// \ref CycleCanceling provides three different cycle-canceling |
118 | 118 |
/// methods. By default, \ref CANCEL_AND_TIGHTEN "Cancel and Tighten" |
119 |
/// is used, which proved to be the most efficient and the most robust |
|
120 |
/// on various test inputs. |
|
119 |
/// is used, which is by far the most efficient and the most robust. |
|
121 | 120 |
/// However, the other methods can be selected using the \ref run() |
122 | 121 |
/// function with the proper parameter. |
123 | 122 |
enum Method { |
124 | 123 |
/// A simple cycle-canceling method, which uses the |
125 | 124 |
/// \ref BellmanFord "Bellman-Ford" algorithm with limited iteration |
126 | 125 |
/// number for detecting negative cycles in the residual network. |
127 | 126 |
SIMPLE_CYCLE_CANCELING, |
128 | 127 |
/// The "Minimum Mean Cycle-Canceling" algorithm, which is a |
129 | 128 |
/// well-known strongly polynomial method |
130 | 129 |
/// \ref goldberg89cyclecanceling. It improves along a |
131 | 130 |
/// \ref min_mean_cycle "minimum mean cycle" in each iteration. |
132 | 131 |
/// Its running time complexity is O(n<sup>2</sup>m<sup>3</sup>log(n)). |
133 | 132 |
MINIMUM_MEAN_CYCLE_CANCELING, |
134 | 133 |
/// The "Cancel And Tighten" algorithm, which can be viewed as an |
135 | 134 |
/// improved version of the previous method |
136 | 135 |
/// \ref goldberg89cyclecanceling. |
137 | 136 |
/// It is faster both in theory and in practice, its running time |
138 | 137 |
/// complexity is O(n<sup>2</sup>m<sup>2</sup>log(n)). |
139 | 138 |
CANCEL_AND_TIGHTEN |
140 | 139 |
}; |
141 | 140 |
|
142 | 141 |
private: |
143 | 142 |
|
144 | 143 |
TEMPLATE_DIGRAPH_TYPEDEFS(GR); |
145 | 144 |
|
146 | 145 |
typedef std::vector<int> IntVector; |
147 | 146 |
typedef std::vector<double> DoubleVector; |
148 | 147 |
typedef std::vector<Value> ValueVector; |
149 | 148 |
typedef std::vector<Cost> CostVector; |
150 | 149 |
typedef std::vector<char> BoolVector; |
151 | 150 |
// Note: vector<char> is used instead of vector<bool> for efficiency reasons |
152 | 151 |
|
153 | 152 |
private: |
154 | 153 |
|
155 | 154 |
template <typename KT, typename VT> |
156 | 155 |
class StaticVectorMap { |
157 | 156 |
public: |
158 | 157 |
typedef KT Key; |
159 | 158 |
typedef VT Value; |
160 | 159 |
|
161 | 160 |
StaticVectorMap(std::vector<Value>& v) : _v(v) {} |
162 | 161 |
|
163 | 162 |
const Value& operator[](const Key& key) const { |
164 | 163 |
return _v[StaticDigraph::id(key)]; |
165 | 164 |
} |
166 | 165 |
|
167 | 166 |
Value& operator[](const Key& key) { |
168 | 167 |
return _v[StaticDigraph::id(key)]; |
169 | 168 |
} |
170 | 169 |
|
171 | 170 |
void set(const Key& key, const Value& val) { |
172 | 171 |
_v[StaticDigraph::id(key)] = val; |
173 | 172 |
} |
174 | 173 |
|
175 | 174 |
private: |
176 | 175 |
std::vector<Value>& _v; |
177 | 176 |
}; |
178 | 177 |
|
179 | 178 |
typedef StaticVectorMap<StaticDigraph::Node, Cost> CostNodeMap; |
180 | 179 |
typedef StaticVectorMap<StaticDigraph::Arc, Cost> CostArcMap; |
181 | 180 |
|
182 | 181 |
private: |
183 | 182 |
|
184 | 183 |
|
185 | 184 |
// Data related to the underlying digraph |
186 | 185 |
const GR &_graph; |
187 | 186 |
int _node_num; |
188 | 187 |
int _arc_num; |
189 | 188 |
int _res_node_num; |
190 | 189 |
int _res_arc_num; |
191 | 190 |
int _root; |
192 | 191 |
|
193 | 192 |
// Parameters of the problem |
194 | 193 |
bool _have_lower; |
195 | 194 |
Value _sum_supply; |
196 | 195 |
|
197 | 196 |
// Data structures for storing the digraph |
198 | 197 |
IntNodeMap _node_id; |
199 | 198 |
IntArcMap _arc_idf; |
200 | 199 |
IntArcMap _arc_idb; |
201 | 200 |
IntVector _first_out; |
202 | 201 |
BoolVector _forward; |
203 | 202 |
IntVector _source; |
204 | 203 |
IntVector _target; |
205 | 204 |
IntVector _reverse; |
206 | 205 |
|
207 | 206 |
// Node and arc data |
208 | 207 |
ValueVector _lower; |
209 | 208 |
ValueVector _upper; |
210 | 209 |
CostVector _cost; |
211 | 210 |
ValueVector _supply; |
212 | 211 |
|
213 | 212 |
ValueVector _res_cap; |
214 | 213 |
CostVector _pi; |
215 | 214 |
|
216 | 215 |
// Data for a StaticDigraph structure |
217 | 216 |
typedef std::pair<int, int> IntPair; |
218 | 217 |
StaticDigraph _sgr; |
219 | 218 |
std::vector<IntPair> _arc_vec; |
220 | 219 |
std::vector<Cost> _cost_vec; |
221 | 220 |
IntVector _id_vec; |
222 | 221 |
CostArcMap _cost_map; |
223 | 222 |
CostNodeMap _pi_map; |
224 | 223 |
|
225 | 224 |
public: |
226 | 225 |
|
227 | 226 |
/// \brief Constant for infinite upper bounds (capacities). |
228 | 227 |
/// |
229 | 228 |
/// Constant for infinite upper bounds (capacities). |
230 | 229 |
/// It is \c std::numeric_limits<Value>::infinity() if available, |
231 | 230 |
/// \c std::numeric_limits<Value>::max() otherwise. |
232 | 231 |
const Value INF; |
233 | 232 |
|
234 | 233 |
public: |
235 | 234 |
|
236 | 235 |
/// \brief Constructor. |
237 | 236 |
/// |
238 | 237 |
/// The constructor of the class. |
239 | 238 |
/// |
240 | 239 |
/// \param graph The digraph the algorithm runs on. |
241 | 240 |
CycleCanceling(const GR& graph) : |
242 | 241 |
_graph(graph), _node_id(graph), _arc_idf(graph), _arc_idb(graph), |
243 | 242 |
_cost_map(_cost_vec), _pi_map(_pi), |
244 | 243 |
INF(std::numeric_limits<Value>::has_infinity ? |
245 | 244 |
std::numeric_limits<Value>::infinity() : |
246 | 245 |
std::numeric_limits<Value>::max()) |
247 | 246 |
{ |
248 | 247 |
// Check the number types |
249 | 248 |
LEMON_ASSERT(std::numeric_limits<Value>::is_signed, |
250 | 249 |
"The flow type of CycleCanceling must be signed"); |
251 | 250 |
LEMON_ASSERT(std::numeric_limits<Cost>::is_signed, |
252 | 251 |
"The cost type of CycleCanceling must be signed"); |
253 | 252 |
|
254 | 253 |
// Reset data structures |
255 | 254 |
reset(); |
256 | 255 |
} |
257 | 256 |
|
258 | 257 |
/// \name Parameters |
259 | 258 |
/// The parameters of the algorithm can be specified using these |
260 | 259 |
/// functions. |
261 | 260 |
|
262 | 261 |
/// @{ |
263 | 262 |
|
264 | 263 |
/// \brief Set the lower bounds on the arcs. |
265 | 264 |
/// |
266 | 265 |
/// This function sets the lower bounds on the arcs. |
267 | 266 |
/// If it is not used before calling \ref run(), the lower bounds |
268 | 267 |
/// will be set to zero on all arcs. |
269 | 268 |
/// |
270 | 269 |
/// \param map An arc map storing the lower bounds. |
271 | 270 |
/// Its \c Value type must be convertible to the \c Value type |
272 | 271 |
/// of the algorithm. |
273 | 272 |
/// |
274 | 273 |
/// \return <tt>(*this)</tt> |
275 | 274 |
template <typename LowerMap> |
276 | 275 |
CycleCanceling& lowerMap(const LowerMap& map) { |
277 | 276 |
_have_lower = true; |
278 | 277 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
279 | 278 |
_lower[_arc_idf[a]] = map[a]; |
280 | 279 |
_lower[_arc_idb[a]] = map[a]; |
281 | 280 |
} |
282 | 281 |
return *this; |
283 | 282 |
} |
284 | 283 |
|
285 | 284 |
/// \brief Set the upper bounds (capacities) on the arcs. |
286 | 285 |
/// |
287 | 286 |
/// This function sets the upper bounds (capacities) on the arcs. |
288 | 287 |
/// If it is not used before calling \ref run(), the upper bounds |
289 | 288 |
/// will be set to \ref INF on all arcs (i.e. the flow value will be |
290 | 289 |
/// unbounded from above). |
291 | 290 |
/// |
292 | 291 |
/// \param map An arc map storing the upper bounds. |
293 | 292 |
/// Its \c Value type must be convertible to the \c Value type |
294 | 293 |
/// of the algorithm. |
295 | 294 |
/// |
296 | 295 |
/// \return <tt>(*this)</tt> |
297 | 296 |
template<typename UpperMap> |
298 | 297 |
CycleCanceling& upperMap(const UpperMap& map) { |
299 | 298 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
300 | 299 |
_upper[_arc_idf[a]] = map[a]; |
301 | 300 |
} |
302 | 301 |
return *this; |
303 | 302 |
} |
304 | 303 |
|
305 | 304 |
/// \brief Set the costs of the arcs. |
306 | 305 |
/// |
307 | 306 |
/// This function sets the costs of the arcs. |
308 | 307 |
/// If it is not used before calling \ref run(), the costs |
309 | 308 |
/// will be set to \c 1 on all arcs. |
310 | 309 |
/// |
311 | 310 |
/// \param map An arc map storing the costs. |
312 | 311 |
/// Its \c Value type must be convertible to the \c Cost type |
313 | 312 |
/// of the algorithm. |
314 | 313 |
/// |
315 | 314 |
/// \return <tt>(*this)</tt> |
316 | 315 |
template<typename CostMap> |
317 | 316 |
CycleCanceling& costMap(const CostMap& map) { |
318 | 317 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
319 | 318 |
_cost[_arc_idf[a]] = map[a]; |
320 | 319 |
_cost[_arc_idb[a]] = -map[a]; |
321 | 320 |
} |
322 | 321 |
return *this; |
323 | 322 |
} |
324 | 323 |
|
325 | 324 |
/// \brief Set the supply values of the nodes. |
326 | 325 |
/// |
327 | 326 |
/// This function sets the supply values of the nodes. |
328 | 327 |
/// If neither this function nor \ref stSupply() is used before |
329 | 328 |
/// calling \ref run(), the supply of each node will be set to zero. |
330 | 329 |
/// |
331 | 330 |
/// \param map A node map storing the supply values. |
332 | 331 |
/// Its \c Value type must be convertible to the \c Value type |
333 | 332 |
/// of the algorithm. |
334 | 333 |
/// |
335 | 334 |
/// \return <tt>(*this)</tt> |
336 | 335 |
template<typename SupplyMap> |
337 | 336 |
CycleCanceling& supplyMap(const SupplyMap& map) { |
338 | 337 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
339 | 338 |
_supply[_node_id[n]] = map[n]; |
340 | 339 |
} |
341 | 340 |
return *this; |
342 | 341 |
} |
343 | 342 |
|
344 | 343 |
/// \brief Set single source and target nodes and a supply value. |
345 | 344 |
/// |
346 | 345 |
/// This function sets a single source node and a single target node |
347 | 346 |
/// and the required flow value. |
348 | 347 |
/// If neither this function nor \ref supplyMap() is used before |
349 | 348 |
/// calling \ref run(), the supply of each node will be set to zero. |
350 | 349 |
/// |
351 | 350 |
/// Using this function has the same effect as using \ref supplyMap() |
352 |
/// with |
|
351 |
/// with a map in which \c k is assigned to \c s, \c -k is |
|
353 | 352 |
/// assigned to \c t and all other nodes have zero supply value. |
354 | 353 |
/// |
355 | 354 |
/// \param s The source node. |
356 | 355 |
/// \param t The target node. |
357 | 356 |
/// \param k The required amount of flow from node \c s to node \c t |
358 | 357 |
/// (i.e. the supply of \c s and the demand of \c t). |
359 | 358 |
/// |
360 | 359 |
/// \return <tt>(*this)</tt> |
361 | 360 |
CycleCanceling& stSupply(const Node& s, const Node& t, Value k) { |
362 | 361 |
for (int i = 0; i != _res_node_num; ++i) { |
363 | 362 |
_supply[i] = 0; |
364 | 363 |
} |
365 | 364 |
_supply[_node_id[s]] = k; |
366 | 365 |
_supply[_node_id[t]] = -k; |
367 | 366 |
return *this; |
368 | 367 |
} |
369 | 368 |
|
370 | 369 |
/// @} |
371 | 370 |
|
372 | 371 |
/// \name Execution control |
373 | 372 |
/// The algorithm can be executed using \ref run(). |
374 | 373 |
|
375 | 374 |
/// @{ |
376 | 375 |
|
377 | 376 |
/// \brief Run the algorithm. |
378 | 377 |
/// |
379 | 378 |
/// This function runs the algorithm. |
380 | 379 |
/// The paramters can be specified using functions \ref lowerMap(), |
381 | 380 |
/// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply(). |
382 | 381 |
/// For example, |
383 | 382 |
/// \code |
384 | 383 |
/// CycleCanceling<ListDigraph> cc(graph); |
385 | 384 |
/// cc.lowerMap(lower).upperMap(upper).costMap(cost) |
386 | 385 |
/// .supplyMap(sup).run(); |
387 | 386 |
/// \endcode |
388 | 387 |
/// |
389 | 388 |
/// This function can be called more than once. All the given parameters |
390 | 389 |
/// are kept for the next call, unless \ref resetParams() or \ref reset() |
391 | 390 |
/// is used, thus only the modified parameters have to be set again. |
392 | 391 |
/// If the underlying digraph was also modified after the construction |
393 | 392 |
/// of the class (or the last \ref reset() call), then the \ref reset() |
394 | 393 |
/// function must be called. |
395 | 394 |
/// |
396 | 395 |
/// \param method The cycle-canceling method that will be used. |
397 | 396 |
/// For more information, see \ref Method. |
398 | 397 |
/// |
399 | 398 |
/// \return \c INFEASIBLE if no feasible flow exists, |
400 | 399 |
/// \n \c OPTIMAL if the problem has optimal solution |
401 | 400 |
/// (i.e. it is feasible and bounded), and the algorithm has found |
402 | 401 |
/// optimal flow and node potentials (primal and dual solutions), |
403 | 402 |
/// \n \c UNBOUNDED if the digraph contains an arc of negative cost |
404 | 403 |
/// and infinite upper bound. It means that the objective function |
405 | 404 |
/// is unbounded on that arc, however, note that it could actually be |
406 | 405 |
/// bounded over the feasible flows, but this algroithm cannot handle |
407 | 406 |
/// these cases. |
408 | 407 |
/// |
409 | 408 |
/// \see ProblemType, Method |
410 | 409 |
/// \see resetParams(), reset() |
411 | 410 |
ProblemType run(Method method = CANCEL_AND_TIGHTEN) { |
412 | 411 |
ProblemType pt = init(); |
413 | 412 |
if (pt != OPTIMAL) return pt; |
414 | 413 |
start(method); |
415 | 414 |
return OPTIMAL; |
416 | 415 |
} |
417 | 416 |
|
418 | 417 |
/// \brief Reset all the parameters that have been given before. |
419 | 418 |
/// |
420 | 419 |
/// This function resets all the paramaters that have been given |
421 | 420 |
/// before using functions \ref lowerMap(), \ref upperMap(), |
422 | 421 |
/// \ref costMap(), \ref supplyMap(), \ref stSupply(). |
423 | 422 |
/// |
424 | 423 |
/// It is useful for multiple \ref run() calls. Basically, all the given |
425 | 424 |
/// parameters are kept for the next \ref run() call, unless |
426 | 425 |
/// \ref resetParams() or \ref reset() is used. |
427 | 426 |
/// If the underlying digraph was also modified after the construction |
428 | 427 |
/// of the class or the last \ref reset() call, then the \ref reset() |
429 | 428 |
/// function must be used, otherwise \ref resetParams() is sufficient. |
430 | 429 |
/// |
431 | 430 |
/// For example, |
432 | 431 |
/// \code |
433 | 432 |
/// CycleCanceling<ListDigraph> cs(graph); |
434 | 433 |
/// |
435 | 434 |
/// // First run |
436 | 435 |
/// cc.lowerMap(lower).upperMap(upper).costMap(cost) |
437 | 436 |
/// .supplyMap(sup).run(); |
438 | 437 |
/// |
439 | 438 |
/// // Run again with modified cost map (resetParams() is not called, |
440 | 439 |
/// // so only the cost map have to be set again) |
441 | 440 |
/// cost[e] += 100; |
442 | 441 |
/// cc.costMap(cost).run(); |
443 | 442 |
/// |
444 | 443 |
/// // Run again from scratch using resetParams() |
445 | 444 |
/// // (the lower bounds will be set to zero on all arcs) |
446 | 445 |
/// cc.resetParams(); |
447 | 446 |
/// cc.upperMap(capacity).costMap(cost) |
448 | 447 |
/// .supplyMap(sup).run(); |
449 | 448 |
/// \endcode |
450 | 449 |
/// |
451 | 450 |
/// \return <tt>(*this)</tt> |
452 | 451 |
/// |
453 | 452 |
/// \see reset(), run() |
454 | 453 |
CycleCanceling& resetParams() { |
455 | 454 |
for (int i = 0; i != _res_node_num; ++i) { |
456 | 455 |
_supply[i] = 0; |
457 | 456 |
} |
458 | 457 |
int limit = _first_out[_root]; |
459 | 458 |
for (int j = 0; j != limit; ++j) { |
460 | 459 |
_lower[j] = 0; |
461 | 460 |
_upper[j] = INF; |
462 | 461 |
_cost[j] = _forward[j] ? 1 : -1; |
463 | 462 |
} |
464 | 463 |
for (int j = limit; j != _res_arc_num; ++j) { |
465 | 464 |
_lower[j] = 0; |
466 | 465 |
_upper[j] = INF; |
467 | 466 |
_cost[j] = 0; |
468 | 467 |
_cost[_reverse[j]] = 0; |
469 | 468 |
} |
470 | 469 |
_have_lower = false; |
471 | 470 |
return *this; |
472 | 471 |
} |
473 | 472 |
|
474 | 473 |
/// \brief Reset the internal data structures and all the parameters |
475 | 474 |
/// that have been given before. |
476 | 475 |
/// |
477 | 476 |
/// This function resets the internal data structures and all the |
478 | 477 |
/// paramaters that have been given before using functions \ref lowerMap(), |
479 | 478 |
/// \ref upperMap(), \ref costMap(), \ref supplyMap(), \ref stSupply(). |
480 | 479 |
/// |
481 | 480 |
/// It is useful for multiple \ref run() calls. Basically, all the given |
482 | 481 |
/// parameters are kept for the next \ref run() call, unless |
483 | 482 |
/// \ref resetParams() or \ref reset() is used. |
484 | 483 |
/// If the underlying digraph was also modified after the construction |
485 | 484 |
/// of the class or the last \ref reset() call, then the \ref reset() |
486 | 485 |
/// function must be used, otherwise \ref resetParams() is sufficient. |
487 | 486 |
/// |
488 | 487 |
/// See \ref resetParams() for examples. |
489 | 488 |
/// |
490 | 489 |
/// \return <tt>(*this)</tt> |
491 | 490 |
/// |
492 | 491 |
/// \see resetParams(), run() |
493 | 492 |
CycleCanceling& reset() { |
494 | 493 |
// Resize vectors |
495 | 494 |
_node_num = countNodes(_graph); |
496 | 495 |
_arc_num = countArcs(_graph); |
497 | 496 |
_res_node_num = _node_num + 1; |
498 | 497 |
_res_arc_num = 2 * (_arc_num + _node_num); |
499 | 498 |
_root = _node_num; |
500 | 499 |
|
501 | 500 |
_first_out.resize(_res_node_num + 1); |
502 | 501 |
_forward.resize(_res_arc_num); |
503 | 502 |
_source.resize(_res_arc_num); |
504 | 503 |
_target.resize(_res_arc_num); |
505 | 504 |
_reverse.resize(_res_arc_num); |
506 | 505 |
|
507 | 506 |
_lower.resize(_res_arc_num); |
508 | 507 |
_upper.resize(_res_arc_num); |
509 | 508 |
_cost.resize(_res_arc_num); |
510 | 509 |
_supply.resize(_res_node_num); |
511 | 510 |
|
512 | 511 |
_res_cap.resize(_res_arc_num); |
513 | 512 |
_pi.resize(_res_node_num); |
514 | 513 |
|
515 | 514 |
_arc_vec.reserve(_res_arc_num); |
516 | 515 |
_cost_vec.reserve(_res_arc_num); |
517 | 516 |
_id_vec.reserve(_res_arc_num); |
518 | 517 |
|
519 | 518 |
// Copy the graph |
520 | 519 |
int i = 0, j = 0, k = 2 * _arc_num + _node_num; |
521 | 520 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
522 | 521 |
_node_id[n] = i; |
523 | 522 |
} |
524 | 523 |
i = 0; |
525 | 524 |
for (NodeIt n(_graph); n != INVALID; ++n, ++i) { |
526 | 525 |
_first_out[i] = j; |
527 | 526 |
for (OutArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
528 | 527 |
_arc_idf[a] = j; |
529 | 528 |
_forward[j] = true; |
530 | 529 |
_source[j] = i; |
531 | 530 |
_target[j] = _node_id[_graph.runningNode(a)]; |
532 | 531 |
} |
533 | 532 |
for (InArcIt a(_graph, n); a != INVALID; ++a, ++j) { |
534 | 533 |
_arc_idb[a] = j; |
535 | 534 |
_forward[j] = false; |
536 | 535 |
_source[j] = i; |
537 | 536 |
_target[j] = _node_id[_graph.runningNode(a)]; |
538 | 537 |
} |
539 | 538 |
_forward[j] = false; |
540 | 539 |
_source[j] = i; |
541 | 540 |
_target[j] = _root; |
542 | 541 |
_reverse[j] = k; |
543 | 542 |
_forward[k] = true; |
544 | 543 |
_source[k] = _root; |
545 | 544 |
_target[k] = i; |
546 | 545 |
_reverse[k] = j; |
547 | 546 |
++j; ++k; |
548 | 547 |
} |
549 | 548 |
_first_out[i] = j; |
550 | 549 |
_first_out[_res_node_num] = k; |
551 | 550 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
552 | 551 |
int fi = _arc_idf[a]; |
553 | 552 |
int bi = _arc_idb[a]; |
554 | 553 |
_reverse[fi] = bi; |
555 | 554 |
_reverse[bi] = fi; |
556 | 555 |
} |
557 | 556 |
|
558 | 557 |
// Reset parameters |
559 | 558 |
resetParams(); |
560 | 559 |
return *this; |
561 | 560 |
} |
562 | 561 |
|
563 | 562 |
/// @} |
564 | 563 |
|
565 | 564 |
/// \name Query Functions |
566 | 565 |
/// The results of the algorithm can be obtained using these |
567 | 566 |
/// functions.\n |
568 | 567 |
/// The \ref run() function must be called before using them. |
569 | 568 |
|
570 | 569 |
/// @{ |
571 | 570 |
|
572 | 571 |
/// \brief Return the total cost of the found flow. |
573 | 572 |
/// |
574 | 573 |
/// This function returns the total cost of the found flow. |
575 | 574 |
/// Its complexity is O(e). |
576 | 575 |
/// |
577 | 576 |
/// \note The return type of the function can be specified as a |
578 | 577 |
/// template parameter. For example, |
579 | 578 |
/// \code |
580 | 579 |
/// cc.totalCost<double>(); |
581 | 580 |
/// \endcode |
582 | 581 |
/// It is useful if the total cost cannot be stored in the \c Cost |
583 | 582 |
/// type of the algorithm, which is the default return type of the |
584 | 583 |
/// function. |
585 | 584 |
/// |
586 | 585 |
/// \pre \ref run() must be called before using this function. |
587 | 586 |
template <typename Number> |
588 | 587 |
Number totalCost() const { |
589 | 588 |
Number c = 0; |
590 | 589 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
591 | 590 |
int i = _arc_idb[a]; |
592 | 591 |
c += static_cast<Number>(_res_cap[i]) * |
593 | 592 |
(-static_cast<Number>(_cost[i])); |
594 | 593 |
} |
595 | 594 |
return c; |
596 | 595 |
} |
597 | 596 |
|
598 | 597 |
#ifndef DOXYGEN |
599 | 598 |
Cost totalCost() const { |
600 | 599 |
return totalCost<Cost>(); |
601 | 600 |
} |
602 | 601 |
#endif |
603 | 602 |
|
604 | 603 |
/// \brief Return the flow on the given arc. |
605 | 604 |
/// |
606 | 605 |
/// This function returns the flow on the given arc. |
607 | 606 |
/// |
608 | 607 |
/// \pre \ref run() must be called before using this function. |
609 | 608 |
Value flow(const Arc& a) const { |
610 | 609 |
return _res_cap[_arc_idb[a]]; |
611 | 610 |
} |
612 | 611 |
|
613 | 612 |
/// \brief Return the flow map (the primal solution). |
614 | 613 |
/// |
615 | 614 |
/// This function copies the flow value on each arc into the given |
616 | 615 |
/// map. The \c Value type of the algorithm must be convertible to |
617 | 616 |
/// the \c Value type of the map. |
618 | 617 |
/// |
619 | 618 |
/// \pre \ref run() must be called before using this function. |
620 | 619 |
template <typename FlowMap> |
621 | 620 |
void flowMap(FlowMap &map) const { |
622 | 621 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
623 | 622 |
map.set(a, _res_cap[_arc_idb[a]]); |
624 | 623 |
} |
625 | 624 |
} |
626 | 625 |
|
627 | 626 |
/// \brief Return the potential (dual value) of the given node. |
628 | 627 |
/// |
629 | 628 |
/// This function returns the potential (dual value) of the |
630 | 629 |
/// given node. |
631 | 630 |
/// |
632 | 631 |
/// \pre \ref run() must be called before using this function. |
633 | 632 |
Cost potential(const Node& n) const { |
634 | 633 |
return static_cast<Cost>(_pi[_node_id[n]]); |
635 | 634 |
} |
636 | 635 |
|
637 | 636 |
/// \brief Return the potential map (the dual solution). |
638 | 637 |
/// |
639 | 638 |
/// This function copies the potential (dual value) of each node |
640 | 639 |
/// into the given map. |
641 | 640 |
/// The \c Cost type of the algorithm must be convertible to the |
642 | 641 |
/// \c Value type of the map. |
643 | 642 |
/// |
644 | 643 |
/// \pre \ref run() must be called before using this function. |
645 | 644 |
template <typename PotentialMap> |
646 | 645 |
void potentialMap(PotentialMap &map) const { |
647 | 646 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
648 | 647 |
map.set(n, static_cast<Cost>(_pi[_node_id[n]])); |
649 | 648 |
} |
650 | 649 |
} |
651 | 650 |
|
652 | 651 |
/// @} |
653 | 652 |
|
654 | 653 |
private: |
655 | 654 |
|
656 | 655 |
// Initialize the algorithm |
657 | 656 |
ProblemType init() { |
658 | 657 |
if (_res_node_num <= 1) return INFEASIBLE; |
659 | 658 |
|
660 | 659 |
// Check the sum of supply values |
661 | 660 |
_sum_supply = 0; |
662 | 661 |
for (int i = 0; i != _root; ++i) { |
663 | 662 |
_sum_supply += _supply[i]; |
664 | 663 |
} |
665 | 664 |
if (_sum_supply > 0) return INFEASIBLE; |
666 | 665 |
|
667 | 666 |
|
668 | 667 |
// Initialize vectors |
669 | 668 |
for (int i = 0; i != _res_node_num; ++i) { |
670 | 669 |
_pi[i] = 0; |
671 | 670 |
} |
672 | 671 |
ValueVector excess(_supply); |
673 | 672 |
|
674 | 673 |
// Remove infinite upper bounds and check negative arcs |
675 | 674 |
const Value MAX = std::numeric_limits<Value>::max(); |
676 | 675 |
int last_out; |
677 | 676 |
if (_have_lower) { |
678 | 677 |
for (int i = 0; i != _root; ++i) { |
679 | 678 |
last_out = _first_out[i+1]; |
680 | 679 |
for (int j = _first_out[i]; j != last_out; ++j) { |
681 | 680 |
if (_forward[j]) { |
682 | 681 |
Value c = _cost[j] < 0 ? _upper[j] : _lower[j]; |
683 | 682 |
if (c >= MAX) return UNBOUNDED; |
684 | 683 |
excess[i] -= c; |
685 | 684 |
excess[_target[j]] += c; |
686 | 685 |
} |
687 | 686 |
} |
688 | 687 |
} |
689 | 688 |
} else { |
690 | 689 |
for (int i = 0; i != _root; ++i) { |
691 | 690 |
last_out = _first_out[i+1]; |
692 | 691 |
for (int j = _first_out[i]; j != last_out; ++j) { |
693 | 692 |
if (_forward[j] && _cost[j] < 0) { |
694 | 693 |
Value c = _upper[j]; |
695 | 694 |
if (c >= MAX) return UNBOUNDED; |
696 | 695 |
excess[i] -= c; |
697 | 696 |
excess[_target[j]] += c; |
698 | 697 |
} |
699 | 698 |
} |
700 | 699 |
} |
701 | 700 |
} |
702 | 701 |
Value ex, max_cap = 0; |
703 | 702 |
for (int i = 0; i != _res_node_num; ++i) { |
704 | 703 |
ex = excess[i]; |
705 | 704 |
if (ex < 0) max_cap -= ex; |
706 | 705 |
} |
707 | 706 |
for (int j = 0; j != _res_arc_num; ++j) { |
708 | 707 |
if (_upper[j] >= MAX) _upper[j] = max_cap; |
709 | 708 |
} |
710 | 709 |
|
711 | 710 |
// Initialize maps for Circulation and remove non-zero lower bounds |
712 | 711 |
ConstMap<Arc, Value> low(0); |
713 | 712 |
typedef typename Digraph::template ArcMap<Value> ValueArcMap; |
714 | 713 |
typedef typename Digraph::template NodeMap<Value> ValueNodeMap; |
715 | 714 |
ValueArcMap cap(_graph), flow(_graph); |
716 | 715 |
ValueNodeMap sup(_graph); |
717 | 716 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
718 | 717 |
sup[n] = _supply[_node_id[n]]; |
719 | 718 |
} |
720 | 719 |
if (_have_lower) { |
721 | 720 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
722 | 721 |
int j = _arc_idf[a]; |
723 | 722 |
Value c = _lower[j]; |
724 | 723 |
cap[a] = _upper[j] - c; |
725 | 724 |
sup[_graph.source(a)] -= c; |
726 | 725 |
sup[_graph.target(a)] += c; |
727 | 726 |
} |
728 | 727 |
} else { |
729 | 728 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
730 | 729 |
cap[a] = _upper[_arc_idf[a]]; |
731 | 730 |
} |
732 | 731 |
} |
733 | 732 |
|
734 | 733 |
// Find a feasible flow using Circulation |
735 | 734 |
Circulation<Digraph, ConstMap<Arc, Value>, ValueArcMap, ValueNodeMap> |
736 | 735 |
circ(_graph, low, cap, sup); |
737 | 736 |
if (!circ.flowMap(flow).run()) return INFEASIBLE; |
738 | 737 |
|
739 | 738 |
// Set residual capacities and handle GEQ supply type |
740 | 739 |
if (_sum_supply < 0) { |
741 | 740 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
742 | 741 |
Value fa = flow[a]; |
743 | 742 |
_res_cap[_arc_idf[a]] = cap[a] - fa; |
744 | 743 |
_res_cap[_arc_idb[a]] = fa; |
745 | 744 |
sup[_graph.source(a)] -= fa; |
746 | 745 |
sup[_graph.target(a)] += fa; |
747 | 746 |
} |
748 | 747 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
749 | 748 |
excess[_node_id[n]] = sup[n]; |
750 | 749 |
} |
751 | 750 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
752 | 751 |
int u = _target[a]; |
753 | 752 |
int ra = _reverse[a]; |
754 | 753 |
_res_cap[a] = -_sum_supply + 1; |
755 | 754 |
_res_cap[ra] = -excess[u]; |
756 | 755 |
_cost[a] = 0; |
757 | 756 |
_cost[ra] = 0; |
758 | 757 |
} |
759 | 758 |
} else { |
760 | 759 |
for (ArcIt a(_graph); a != INVALID; ++a) { |
761 | 760 |
Value fa = flow[a]; |
762 | 761 |
_res_cap[_arc_idf[a]] = cap[a] - fa; |
763 | 762 |
_res_cap[_arc_idb[a]] = fa; |
764 | 763 |
} |
765 | 764 |
for (int a = _first_out[_root]; a != _res_arc_num; ++a) { |
766 | 765 |
int ra = _reverse[a]; |
767 | 766 |
_res_cap[a] = 1; |
768 | 767 |
_res_cap[ra] = 0; |
769 | 768 |
_cost[a] = 0; |
770 | 769 |
_cost[ra] = 0; |
771 | 770 |
} |
772 | 771 |
} |
773 | 772 |
|
774 | 773 |
return OPTIMAL; |
775 | 774 |
} |
776 | 775 |
|
777 | 776 |
// Build a StaticDigraph structure containing the current |
778 | 777 |
// residual network |
779 | 778 |
void buildResidualNetwork() { |
780 | 779 |
_arc_vec.clear(); |
781 | 780 |
_cost_vec.clear(); |
782 | 781 |
_id_vec.clear(); |
783 | 782 |
for (int j = 0; j != _res_arc_num; ++j) { |
784 | 783 |
if (_res_cap[j] > 0) { |
785 | 784 |
_arc_vec.push_back(IntPair(_source[j], _target[j])); |
786 | 785 |
_cost_vec.push_back(_cost[j]); |
787 | 786 |
_id_vec.push_back(j); |
788 | 787 |
} |
789 | 788 |
} |
790 | 789 |
_sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end()); |
791 | 790 |
} |
792 | 791 |
|
793 | 792 |
// Execute the algorithm and transform the results |
794 | 793 |
void start(Method method) { |
795 | 794 |
// Execute the algorithm |
796 | 795 |
switch (method) { |
797 | 796 |
case SIMPLE_CYCLE_CANCELING: |
798 | 797 |
startSimpleCycleCanceling(); |
799 | 798 |
break; |
800 | 799 |
case MINIMUM_MEAN_CYCLE_CANCELING: |
801 | 800 |
startMinMeanCycleCanceling(); |
802 | 801 |
break; |
803 | 802 |
case CANCEL_AND_TIGHTEN: |
804 | 803 |
startCancelAndTighten(); |
805 | 804 |
break; |
806 | 805 |
} |
807 | 806 |
|
808 | 807 |
// Compute node potentials |
809 | 808 |
if (method != SIMPLE_CYCLE_CANCELING) { |
810 | 809 |
buildResidualNetwork(); |
811 | 810 |
typename BellmanFord<StaticDigraph, CostArcMap> |
812 | 811 |
::template SetDistMap<CostNodeMap>::Create bf(_sgr, _cost_map); |
813 | 812 |
bf.distMap(_pi_map); |
814 | 813 |
bf.init(0); |
815 | 814 |
bf.start(); |
816 | 815 |
} |
817 | 816 |
|
818 | 817 |
// Handle non-zero lower bounds |
819 | 818 |
if (_have_lower) { |
820 | 819 |
int limit = _first_out[_root]; |
821 | 820 |
for (int j = 0; j != limit; ++j) { |
822 | 821 |
if (!_forward[j]) _res_cap[j] += _lower[j]; |
823 | 822 |
} |
824 | 823 |
} |
825 | 824 |
} |
826 | 825 |
|
827 | 826 |
// Execute the "Simple Cycle Canceling" method |
828 | 827 |
void startSimpleCycleCanceling() { |
829 | 828 |
// Constants for computing the iteration limits |
830 | 829 |
const int BF_FIRST_LIMIT = 2; |
831 | 830 |
const double BF_LIMIT_FACTOR = 1.5; |
832 | 831 |
|
833 | 832 |
typedef StaticVectorMap<StaticDigraph::Arc, Value> FilterMap; |
834 | 833 |
typedef FilterArcs<StaticDigraph, FilterMap> ResDigraph; |
835 | 834 |
typedef StaticVectorMap<StaticDigraph::Node, StaticDigraph::Arc> PredMap; |
836 | 835 |
typedef typename BellmanFord<ResDigraph, CostArcMap> |
837 | 836 |
::template SetDistMap<CostNodeMap> |
838 | 837 |
::template SetPredMap<PredMap>::Create BF; |
839 | 838 |
|
840 | 839 |
// Build the residual network |
841 | 840 |
_arc_vec.clear(); |
842 | 841 |
_cost_vec.clear(); |
843 | 842 |
for (int j = 0; j != _res_arc_num; ++j) { |
844 | 843 |
_arc_vec.push_back(IntPair(_source[j], _target[j])); |
845 | 844 |
_cost_vec.push_back(_cost[j]); |
846 | 845 |
} |
847 | 846 |
_sgr.build(_res_node_num, _arc_vec.begin(), _arc_vec.end()); |
848 | 847 |
|
849 | 848 |
FilterMap filter_map(_res_cap); |
850 | 849 |
ResDigraph rgr(_sgr, filter_map); |
851 | 850 |
std::vector<int> cycle; |
852 | 851 |
std::vector<StaticDigraph::Arc> pred(_res_arc_num); |
853 | 852 |
PredMap pred_map(pred); |
854 | 853 |
BF bf(rgr, _cost_map); |
855 | 854 |
bf.distMap(_pi_map).predMap(pred_map); |
856 | 855 |
|
857 | 856 |
int length_bound = BF_FIRST_LIMIT; |
858 | 857 |
bool optimal = false; |
859 | 858 |
while (!optimal) { |
860 | 859 |
bf.init(0); |
861 | 860 |
int iter_num = 0; |
862 | 861 |
bool cycle_found = false; |
863 | 862 |
while (!cycle_found) { |
864 | 863 |
// Perform some iterations of the Bellman-Ford algorithm |
865 | 864 |
int curr_iter_num = iter_num + length_bound <= _node_num ? |
866 | 865 |
length_bound : _node_num - iter_num; |
867 | 866 |
iter_num += curr_iter_num; |
868 | 867 |
int real_iter_num = curr_iter_num; |
869 | 868 |
for (int i = 0; i < curr_iter_num; ++i) { |
870 | 869 |
if (bf.processNextWeakRound()) { |
871 | 870 |
real_iter_num = i; |
872 | 871 |
break; |
873 | 872 |
} |
874 | 873 |
} |
875 | 874 |
if (real_iter_num < curr_iter_num) { |
876 | 875 |
// Optimal flow is found |
877 | 876 |
optimal = true; |
878 | 877 |
break; |
879 | 878 |
} else { |
880 | 879 |
// Search for node disjoint negative cycles |
881 | 880 |
std::vector<int> state(_res_node_num, 0); |
882 | 881 |
int id = 0; |
883 | 882 |
for (int u = 0; u != _res_node_num; ++u) { |
884 | 883 |
if (state[u] != 0) continue; |
885 | 884 |
++id; |
886 | 885 |
int v = u; |
887 | 886 |
for (; v != -1 && state[v] == 0; v = pred[v] == INVALID ? |
888 | 887 |
-1 : rgr.id(rgr.source(pred[v]))) { |
889 | 888 |
state[v] = id; |
890 | 889 |
} |
891 | 890 |
if (v != -1 && state[v] == id) { |
892 | 891 |
// A negative cycle is found |
893 | 892 |
cycle_found = true; |
894 | 893 |
cycle.clear(); |
895 | 894 |
StaticDigraph::Arc a = pred[v]; |
896 | 895 |
Value d, delta = _res_cap[rgr.id(a)]; |
897 | 896 |
cycle.push_back(rgr.id(a)); |
898 | 897 |
while (rgr.id(rgr.source(a)) != v) { |
899 | 898 |
a = pred_map[rgr.source(a)]; |
900 | 899 |
d = _res_cap[rgr.id(a)]; |
901 | 900 |
if (d < delta) delta = d; |
902 | 901 |
cycle.push_back(rgr.id(a)); |
903 | 902 |
} |
904 | 903 |
|
905 | 904 |
// Augment along the cycle |
906 | 905 |
for (int i = 0; i < int(cycle.size()); ++i) { |
907 | 906 |
int j = cycle[i]; |
908 | 907 |
_res_cap[j] -= delta; |
909 | 908 |
_res_cap[_reverse[j]] += delta; |
910 | 909 |
} |
911 | 910 |
} |
912 | 911 |
} |
913 | 912 |
} |
914 | 913 |
|
915 | 914 |
// Increase iteration limit if no cycle is found |
916 | 915 |
if (!cycle_found) { |
917 | 916 |
length_bound = static_cast<int>(length_bound * BF_LIMIT_FACTOR); |
918 | 917 |
} |
919 | 918 |
} |
920 | 919 |
} |
921 | 920 |
} |
922 | 921 |
|
923 | 922 |
// Execute the "Minimum Mean Cycle Canceling" method |
924 | 923 |
void startMinMeanCycleCanceling() { |
925 | 924 |
typedef SimplePath<StaticDigraph> SPath; |
926 | 925 |
typedef typename SPath::ArcIt SPathArcIt; |
927 | 926 |
typedef typename HowardMmc<StaticDigraph, CostArcMap> |
928 | 927 |
::template SetPath<SPath>::Create MMC; |
929 | 928 |
|
930 | 929 |
SPath cycle; |
931 | 930 |
MMC mmc(_sgr, _cost_map); |
932 | 931 |
mmc.cycle(cycle); |
933 | 932 |
buildResidualNetwork(); |
934 | 933 |
while (mmc.findCycleMean() && mmc.cycleCost() < 0) { |
935 | 934 |
// Find the cycle |
936 | 935 |
mmc.findCycle(); |
937 | 936 |
|
938 | 937 |
// Compute delta value |
939 | 938 |
Value delta = INF; |
940 | 939 |
for (SPathArcIt a(cycle); a != INVALID; ++a) { |
941 | 940 |
Value d = _res_cap[_id_vec[_sgr.id(a)]]; |
942 | 941 |
if (d < delta) delta = d; |
943 | 942 |
} |
944 | 943 |
|
945 | 944 |
// Augment along the cycle |
946 | 945 |
for (SPathArcIt a(cycle); a != INVALID; ++a) { |
947 | 946 |
int j = _id_vec[_sgr.id(a)]; |
948 | 947 |
_res_cap[j] -= delta; |
949 | 948 |
_res_cap[_reverse[j]] += delta; |
950 | 949 |
} |
951 | 950 |
|
952 | 951 |
// Rebuild the residual network |
953 | 952 |
buildResidualNetwork(); |
954 | 953 |
} |
955 | 954 |
} |
956 | 955 |
|
957 | 956 |
// Execute the "Cancel And Tighten" method |
958 | 957 |
void startCancelAndTighten() { |
959 | 958 |
// Constants for the min mean cycle computations |
960 | 959 |
const double LIMIT_FACTOR = 1.0; |
961 | 960 |
const int MIN_LIMIT = 5; |
962 | 961 |
|
963 | 962 |
// Contruct auxiliary data vectors |
964 | 963 |
DoubleVector pi(_res_node_num, 0.0); |
965 | 964 |
IntVector level(_res_node_num); |
966 | 965 |
BoolVector reached(_res_node_num); |
967 | 966 |
BoolVector processed(_res_node_num); |
968 | 967 |
IntVector pred_node(_res_node_num); |
969 | 968 |
IntVector pred_arc(_res_node_num); |
970 | 969 |
std::vector<int> stack(_res_node_num); |
971 | 970 |
std::vector<int> proc_vector(_res_node_num); |
972 | 971 |
|
973 | 972 |
// Initialize epsilon |
974 | 973 |
double epsilon = 0; |
975 | 974 |
for (int a = 0; a != _res_arc_num; ++a) { |
976 | 975 |
if (_res_cap[a] > 0 && -_cost[a] > epsilon) |
977 | 976 |
epsilon = -_cost[a]; |
978 | 977 |
} |
979 | 978 |
|
980 | 979 |
// Start phases |
981 | 980 |
Tolerance<double> tol; |
982 | 981 |
tol.epsilon(1e-6); |
983 | 982 |
int limit = int(LIMIT_FACTOR * std::sqrt(double(_res_node_num))); |
984 | 983 |
if (limit < MIN_LIMIT) limit = MIN_LIMIT; |
985 | 984 |
int iter = limit; |
986 | 985 |
while (epsilon * _res_node_num >= 1) { |
987 | 986 |
// Find and cancel cycles in the admissible network using DFS |
988 | 987 |
for (int u = 0; u != _res_node_num; ++u) { |
989 | 988 |
reached[u] = false; |
990 | 989 |
processed[u] = false; |
991 | 990 |
} |
992 | 991 |
int stack_head = -1; |
993 | 992 |
int proc_head = -1; |
994 | 993 |
for (int start = 0; start != _res_node_num; ++start) { |
995 | 994 |
if (reached[start]) continue; |
996 | 995 |
|
997 | 996 |
// New start node |
998 | 997 |
reached[start] = true; |
999 | 998 |
pred_arc[start] = -1; |
1000 | 999 |
pred_node[start] = -1; |
1001 | 1000 |
|
1002 | 1001 |
// Find the first admissible outgoing arc |
1003 | 1002 |
double p = pi[start]; |
1004 | 1003 |
int a = _first_out[start]; |
1005 | 1004 |
int last_out = _first_out[start+1]; |
1006 | 1005 |
for (; a != last_out && (_res_cap[a] == 0 || |
1007 | 1006 |
!tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ; |
1008 | 1007 |
if (a == last_out) { |
1009 | 1008 |
processed[start] = true; |
1010 | 1009 |
proc_vector[++proc_head] = start; |
1011 | 1010 |
continue; |
1012 | 1011 |
} |
1013 | 1012 |
stack[++stack_head] = a; |
1014 | 1013 |
|
1015 | 1014 |
while (stack_head >= 0) { |
1016 | 1015 |
int sa = stack[stack_head]; |
1017 | 1016 |
int u = _source[sa]; |
1018 | 1017 |
int v = _target[sa]; |
1019 | 1018 |
|
1020 | 1019 |
if (!reached[v]) { |
1021 | 1020 |
// A new node is reached |
1022 | 1021 |
reached[v] = true; |
1023 | 1022 |
pred_node[v] = u; |
1024 | 1023 |
pred_arc[v] = sa; |
1025 | 1024 |
p = pi[v]; |
1026 | 1025 |
a = _first_out[v]; |
1027 | 1026 |
last_out = _first_out[v+1]; |
1028 | 1027 |
for (; a != last_out && (_res_cap[a] == 0 || |
1029 | 1028 |
!tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ; |
1030 | 1029 |
stack[++stack_head] = a == last_out ? -1 : a; |
1031 | 1030 |
} else { |
1032 | 1031 |
if (!processed[v]) { |
1033 | 1032 |
// A cycle is found |
1034 | 1033 |
int n, w = u; |
1035 | 1034 |
Value d, delta = _res_cap[sa]; |
1036 | 1035 |
for (n = u; n != v; n = pred_node[n]) { |
1037 | 1036 |
d = _res_cap[pred_arc[n]]; |
1038 | 1037 |
if (d <= delta) { |
1039 | 1038 |
delta = d; |
1040 | 1039 |
w = pred_node[n]; |
1041 | 1040 |
} |
1042 | 1041 |
} |
1043 | 1042 |
|
1044 | 1043 |
// Augment along the cycle |
1045 | 1044 |
_res_cap[sa] -= delta; |
1046 | 1045 |
_res_cap[_reverse[sa]] += delta; |
1047 | 1046 |
for (n = u; n != v; n = pred_node[n]) { |
1048 | 1047 |
int pa = pred_arc[n]; |
1049 | 1048 |
_res_cap[pa] -= delta; |
1050 | 1049 |
_res_cap[_reverse[pa]] += delta; |
1051 | 1050 |
} |
1052 | 1051 |
for (n = u; stack_head > 0 && n != w; n = pred_node[n]) { |
1053 | 1052 |
--stack_head; |
1054 | 1053 |
reached[n] = false; |
1055 | 1054 |
} |
1056 | 1055 |
u = w; |
1057 | 1056 |
} |
1058 | 1057 |
v = u; |
1059 | 1058 |
|
1060 | 1059 |
// Find the next admissible outgoing arc |
1061 | 1060 |
p = pi[v]; |
1062 | 1061 |
a = stack[stack_head] + 1; |
1063 | 1062 |
last_out = _first_out[v+1]; |
1064 | 1063 |
for (; a != last_out && (_res_cap[a] == 0 || |
1065 | 1064 |
!tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ; |
1066 | 1065 |
stack[stack_head] = a == last_out ? -1 : a; |
1067 | 1066 |
} |
1068 | 1067 |
|
1069 | 1068 |
while (stack_head >= 0 && stack[stack_head] == -1) { |
1070 | 1069 |
processed[v] = true; |
1071 | 1070 |
proc_vector[++proc_head] = v; |
1072 | 1071 |
if (--stack_head >= 0) { |
1073 | 1072 |
// Find the next admissible outgoing arc |
1074 | 1073 |
v = _source[stack[stack_head]]; |
1075 | 1074 |
p = pi[v]; |
1076 | 1075 |
a = stack[stack_head] + 1; |
1077 | 1076 |
last_out = _first_out[v+1]; |
1078 | 1077 |
for (; a != last_out && (_res_cap[a] == 0 || |
1079 | 1078 |
!tol.negative(_cost[a] + p - pi[_target[a]])); ++a) ; |
1080 | 1079 |
stack[stack_head] = a == last_out ? -1 : a; |
1081 | 1080 |
} |
1082 | 1081 |
} |
1083 | 1082 |
} |
1084 | 1083 |
} |
1085 | 1084 |
|
1086 | 1085 |
// Tighten potentials and epsilon |
1087 | 1086 |
if (--iter > 0) { |
1088 | 1087 |
for (int u = 0; u != _res_node_num; ++u) { |
1089 | 1088 |
level[u] = 0; |
1090 | 1089 |
} |
1091 | 1090 |
for (int i = proc_head; i > 0; --i) { |
1092 | 1091 |
int u = proc_vector[i]; |
1093 | 1092 |
double p = pi[u]; |
1094 | 1093 |
int l = level[u] + 1; |
1095 | 1094 |
int last_out = _first_out[u+1]; |
1096 | 1095 |
for (int a = _first_out[u]; a != last_out; ++a) { |
1097 | 1096 |
int v = _target[a]; |
1098 | 1097 |
if (_res_cap[a] > 0 && tol.negative(_cost[a] + p - pi[v]) && |
1099 | 1098 |
l > level[v]) level[v] = l; |
1100 | 1099 |
} |
1101 | 1100 |
} |
1102 | 1101 |
|
1103 | 1102 |
// Modify potentials |
1104 | 1103 |
double q = std::numeric_limits<double>::max(); |
1105 | 1104 |
for (int u = 0; u != _res_node_num; ++u) { |
1106 | 1105 |
int lu = level[u]; |
1107 | 1106 |
double p, pu = pi[u]; |
1108 | 1107 |
int last_out = _first_out[u+1]; |
1109 | 1108 |
for (int a = _first_out[u]; a != last_out; ++a) { |
1110 | 1109 |
if (_res_cap[a] == 0) continue; |
1111 | 1110 |
int v = _target[a]; |
1112 | 1111 |
int ld = lu - level[v]; |
1113 | 1112 |
if (ld > 0) { |
1114 | 1113 |
p = (_cost[a] + pu - pi[v] + epsilon) / (ld + 1); |
1115 | 1114 |
if (p < q) q = p; |
1116 | 1115 |
} |
1117 | 1116 |
} |
1118 | 1117 |
} |
1119 | 1118 |
for (int u = 0; u != _res_node_num; ++u) { |
1120 | 1119 |
pi[u] -= q * level[u]; |
1121 | 1120 |
} |
1122 | 1121 |
|
1123 | 1122 |
// Modify epsilon |
1124 | 1123 |
epsilon = 0; |
1125 | 1124 |
for (int u = 0; u != _res_node_num; ++u) { |
1126 | 1125 |
double curr, pu = pi[u]; |
1127 | 1126 |
int last_out = _first_out[u+1]; |
1128 | 1127 |
for (int a = _first_out[u]; a != last_out; ++a) { |
1129 | 1128 |
if (_res_cap[a] == 0) continue; |
1130 | 1129 |
curr = _cost[a] + pu - pi[_target[a]]; |
1131 | 1130 |
if (-curr > epsilon) epsilon = -curr; |
1132 | 1131 |
} |
1133 | 1132 |
} |
1134 | 1133 |
} else { |
1135 | 1134 |
typedef HowardMmc<StaticDigraph, CostArcMap> MMC; |
1136 | 1135 |
typedef typename BellmanFord<StaticDigraph, CostArcMap> |
1137 | 1136 |
::template SetDistMap<CostNodeMap>::Create BF; |
1138 | 1137 |
|
1139 | 1138 |
// Set epsilon to the minimum cycle mean |
1140 | 1139 |
buildResidualNetwork(); |
1141 | 1140 |
MMC mmc(_sgr, _cost_map); |
1142 | 1141 |
mmc.findCycleMean(); |
1143 | 1142 |
epsilon = -mmc.cycleMean(); |
1144 | 1143 |
Cost cycle_cost = mmc.cycleCost(); |
1145 | 1144 |
int cycle_size = mmc.cycleSize(); |
1146 | 1145 |
|
1147 | 1146 |
// Compute feasible potentials for the current epsilon |
1148 | 1147 |
for (int i = 0; i != int(_cost_vec.size()); ++i) { |
1149 | 1148 |
_cost_vec[i] = cycle_size * _cost_vec[i] - cycle_cost; |
1150 | 1149 |
} |
1151 | 1150 |
BF bf(_sgr, _cost_map); |
1152 | 1151 |
bf.distMap(_pi_map); |
1153 | 1152 |
bf.init(0); |
1154 | 1153 |
bf.start(); |
1155 | 1154 |
for (int u = 0; u != _res_node_num; ++u) { |
1156 | 1155 |
pi[u] = static_cast<double>(_pi[u]) / cycle_size; |
1157 | 1156 |
} |
1158 | 1157 |
|
1159 | 1158 |
iter = limit; |
1160 | 1159 |
} |
1161 | 1160 |
} |
1162 | 1161 |
} |
1163 | 1162 |
|
1164 | 1163 |
}; //class CycleCanceling |
1165 | 1164 |
|
1166 | 1165 |
///@} |
1167 | 1166 |
|
1168 | 1167 |
} //namespace lemon |
1169 | 1168 |
|
1170 | 1169 |
#endif //LEMON_CYCLE_CANCELING_H |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2010 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#ifndef LEMON_EULER_H |
20 | 20 |
#define LEMON_EULER_H |
21 | 21 |
|
22 | 22 |
#include<lemon/core.h> |
23 | 23 |
#include<lemon/adaptors.h> |
24 | 24 |
#include<lemon/connectivity.h> |
25 | 25 |
#include <list> |
26 | 26 |
|
27 | 27 |
/// \ingroup graph_properties |
28 | 28 |
/// \file |
29 | 29 |
/// \brief Euler tour iterators and a function for checking the \e Eulerian |
30 | 30 |
/// property. |
31 | 31 |
/// |
32 | 32 |
///This file provides Euler tour iterators and a function to check |
33 | 33 |
///if a (di)graph is \e Eulerian. |
34 | 34 |
|
35 | 35 |
namespace lemon { |
36 | 36 |
|
37 | 37 |
///Euler tour iterator for digraphs. |
38 | 38 |
|
39 |
/// \ingroup |
|
39 |
/// \ingroup graph_properties |
|
40 | 40 |
///This iterator provides an Euler tour (Eulerian circuit) of a \e directed |
41 | 41 |
///graph (if there exists) and it converts to the \c Arc type of the digraph. |
42 | 42 |
/// |
43 | 43 |
///For example, if the given digraph has an Euler tour (i.e it has only one |
44 | 44 |
///non-trivial component and the in-degree is equal to the out-degree |
45 | 45 |
///for all nodes), then the following code will put the arcs of \c g |
46 | 46 |
///to the vector \c et according to an Euler tour of \c g. |
47 | 47 |
///\code |
48 | 48 |
/// std::vector<ListDigraph::Arc> et; |
49 | 49 |
/// for(DiEulerIt<ListDigraph> e(g); e!=INVALID; ++e) |
50 | 50 |
/// et.push_back(e); |
51 | 51 |
///\endcode |
52 | 52 |
///If \c g has no Euler tour, then the resulted walk will not be closed |
53 | 53 |
///or not contain all arcs. |
54 | 54 |
///\sa EulerIt |
55 | 55 |
template<typename GR> |
56 | 56 |
class DiEulerIt |
57 | 57 |
{ |
58 | 58 |
typedef typename GR::Node Node; |
59 | 59 |
typedef typename GR::NodeIt NodeIt; |
60 | 60 |
typedef typename GR::Arc Arc; |
61 | 61 |
typedef typename GR::ArcIt ArcIt; |
62 | 62 |
typedef typename GR::OutArcIt OutArcIt; |
63 | 63 |
typedef typename GR::InArcIt InArcIt; |
64 | 64 |
|
65 | 65 |
const GR &g; |
66 | 66 |
typename GR::template NodeMap<OutArcIt> narc; |
67 | 67 |
std::list<Arc> euler; |
68 | 68 |
|
69 | 69 |
public: |
70 | 70 |
|
71 | 71 |
///Constructor |
72 | 72 |
|
73 | 73 |
///Constructor. |
74 | 74 |
///\param gr A digraph. |
75 | 75 |
///\param start The starting point of the tour. If it is not given, |
76 | 76 |
///the tour will start from the first node that has an outgoing arc. |
77 | 77 |
DiEulerIt(const GR &gr, typename GR::Node start = INVALID) |
78 | 78 |
: g(gr), narc(g) |
79 | 79 |
{ |
80 | 80 |
if (start==INVALID) { |
81 | 81 |
NodeIt n(g); |
82 | 82 |
while (n!=INVALID && OutArcIt(g,n)==INVALID) ++n; |
83 | 83 |
start=n; |
84 | 84 |
} |
85 | 85 |
if (start!=INVALID) { |
86 | 86 |
for (NodeIt n(g); n!=INVALID; ++n) narc[n]=OutArcIt(g,n); |
87 | 87 |
while (narc[start]!=INVALID) { |
88 | 88 |
euler.push_back(narc[start]); |
89 | 89 |
Node next=g.target(narc[start]); |
90 | 90 |
++narc[start]; |
91 | 91 |
start=next; |
92 | 92 |
} |
93 | 93 |
} |
94 | 94 |
} |
95 | 95 |
|
96 | 96 |
///Arc conversion |
97 | 97 |
operator Arc() { return euler.empty()?INVALID:euler.front(); } |
98 | 98 |
///Compare with \c INVALID |
99 | 99 |
bool operator==(Invalid) { return euler.empty(); } |
100 | 100 |
///Compare with \c INVALID |
101 | 101 |
bool operator!=(Invalid) { return !euler.empty(); } |
102 | 102 |
|
103 | 103 |
///Next arc of the tour |
104 | 104 |
|
105 | 105 |
///Next arc of the tour |
106 | 106 |
/// |
107 | 107 |
DiEulerIt &operator++() { |
108 | 108 |
Node s=g.target(euler.front()); |
109 | 109 |
euler.pop_front(); |
110 | 110 |
typename std::list<Arc>::iterator next=euler.begin(); |
111 | 111 |
while(narc[s]!=INVALID) { |
112 | 112 |
euler.insert(next,narc[s]); |
113 | 113 |
Node n=g.target(narc[s]); |
114 | 114 |
++narc[s]; |
115 | 115 |
s=n; |
116 | 116 |
} |
117 | 117 |
return *this; |
118 | 118 |
} |
119 | 119 |
///Postfix incrementation |
120 | 120 |
|
121 | 121 |
/// Postfix incrementation. |
122 | 122 |
/// |
123 | 123 |
///\warning This incrementation |
124 | 124 |
///returns an \c Arc, not a \ref DiEulerIt, as one may |
125 | 125 |
///expect. |
126 | 126 |
Arc operator++(int) |
127 | 127 |
{ |
128 | 128 |
Arc e=*this; |
129 | 129 |
++(*this); |
130 | 130 |
return e; |
131 | 131 |
} |
132 | 132 |
}; |
133 | 133 |
|
134 | 134 |
///Euler tour iterator for graphs. |
135 | 135 |
|
136 | 136 |
/// \ingroup graph_properties |
137 | 137 |
///This iterator provides an Euler tour (Eulerian circuit) of an |
138 | 138 |
///\e undirected graph (if there exists) and it converts to the \c Arc |
139 | 139 |
///and \c Edge types of the graph. |
140 | 140 |
/// |
141 | 141 |
///For example, if the given graph has an Euler tour (i.e it has only one |
142 | 142 |
///non-trivial component and the degree of each node is even), |
143 | 143 |
///the following code will print the arc IDs according to an |
144 | 144 |
///Euler tour of \c g. |
145 | 145 |
///\code |
146 | 146 |
/// for(EulerIt<ListGraph> e(g); e!=INVALID; ++e) { |
147 | 147 |
/// std::cout << g.id(Edge(e)) << std::eol; |
148 | 148 |
/// } |
149 | 149 |
///\endcode |
150 | 150 |
///Although this iterator is for undirected graphs, it still returns |
151 | 151 |
///arcs in order to indicate the direction of the tour. |
152 | 152 |
///(But arcs convert to edges, of course.) |
153 | 153 |
/// |
154 | 154 |
///If \c g has no Euler tour, then the resulted walk will not be closed |
155 | 155 |
///or not contain all edges. |
156 | 156 |
template<typename GR> |
157 | 157 |
class EulerIt |
158 | 158 |
{ |
159 | 159 |
typedef typename GR::Node Node; |
160 | 160 |
typedef typename GR::NodeIt NodeIt; |
161 | 161 |
typedef typename GR::Arc Arc; |
162 | 162 |
typedef typename GR::Edge Edge; |
163 | 163 |
typedef typename GR::ArcIt ArcIt; |
164 | 164 |
typedef typename GR::OutArcIt OutArcIt; |
165 | 165 |
typedef typename GR::InArcIt InArcIt; |
166 | 166 |
|
167 | 167 |
const GR &g; |
168 | 168 |
typename GR::template NodeMap<OutArcIt> narc; |
169 | 169 |
typename GR::template EdgeMap<bool> visited; |
170 | 170 |
std::list<Arc> euler; |
171 | 171 |
|
172 | 172 |
public: |
173 | 173 |
|
174 | 174 |
///Constructor |
175 | 175 |
|
176 | 176 |
///Constructor. |
177 | 177 |
///\param gr A graph. |
178 | 178 |
///\param start The starting point of the tour. If it is not given, |
179 | 179 |
///the tour will start from the first node that has an incident edge. |
180 | 180 |
EulerIt(const GR &gr, typename GR::Node start = INVALID) |
181 | 181 |
: g(gr), narc(g), visited(g, false) |
182 | 182 |
{ |
183 | 183 |
if (start==INVALID) { |
184 | 184 |
NodeIt n(g); |
185 | 185 |
while (n!=INVALID && OutArcIt(g,n)==INVALID) ++n; |
186 | 186 |
start=n; |
187 | 187 |
} |
188 | 188 |
if (start!=INVALID) { |
189 | 189 |
for (NodeIt n(g); n!=INVALID; ++n) narc[n]=OutArcIt(g,n); |
190 | 190 |
while(narc[start]!=INVALID) { |
191 | 191 |
euler.push_back(narc[start]); |
192 | 192 |
visited[narc[start]]=true; |
193 | 193 |
Node next=g.target(narc[start]); |
194 | 194 |
++narc[start]; |
195 | 195 |
start=next; |
196 | 196 |
while(narc[start]!=INVALID && visited[narc[start]]) ++narc[start]; |
197 | 197 |
} |
198 | 198 |
} |
199 | 199 |
} |
200 | 200 |
|
201 | 201 |
///Arc conversion |
202 | 202 |
operator Arc() const { return euler.empty()?INVALID:euler.front(); } |
203 | 203 |
///Edge conversion |
204 | 204 |
operator Edge() const { return euler.empty()?INVALID:euler.front(); } |
205 | 205 |
///Compare with \c INVALID |
206 | 206 |
bool operator==(Invalid) const { return euler.empty(); } |
207 | 207 |
///Compare with \c INVALID |
208 | 208 |
bool operator!=(Invalid) const { return !euler.empty(); } |
209 | 209 |
|
210 | 210 |
///Next arc of the tour |
211 | 211 |
|
212 | 212 |
///Next arc of the tour |
213 | 213 |
/// |
214 | 214 |
EulerIt &operator++() { |
215 | 215 |
Node s=g.target(euler.front()); |
216 | 216 |
euler.pop_front(); |
217 | 217 |
typename std::list<Arc>::iterator next=euler.begin(); |
218 | 218 |
while(narc[s]!=INVALID) { |
219 | 219 |
while(narc[s]!=INVALID && visited[narc[s]]) ++narc[s]; |
220 | 220 |
if(narc[s]==INVALID) break; |
221 | 221 |
else { |
222 | 222 |
euler.insert(next,narc[s]); |
223 | 223 |
visited[narc[s]]=true; |
224 | 224 |
Node n=g.target(narc[s]); |
225 | 225 |
++narc[s]; |
226 | 226 |
s=n; |
227 | 227 |
} |
228 | 228 |
} |
229 | 229 |
return *this; |
230 | 230 |
} |
231 | 231 |
|
232 | 232 |
///Postfix incrementation |
233 | 233 |
|
234 | 234 |
/// Postfix incrementation. |
235 | 235 |
/// |
236 | 236 |
///\warning This incrementation returns an \c Arc (which converts to |
237 | 237 |
///an \c Edge), not an \ref EulerIt, as one may expect. |
238 | 238 |
Arc operator++(int) |
239 | 239 |
{ |
240 | 240 |
Arc e=*this; |
241 | 241 |
++(*this); |
242 | 242 |
return e; |
243 | 243 |
} |
244 | 244 |
}; |
245 | 245 |
|
246 | 246 |
|
247 | 247 |
///Check if the given graph is Eulerian |
248 | 248 |
|
249 | 249 |
/// \ingroup graph_properties |
250 | 250 |
///This function checks if the given graph is Eulerian. |
251 | 251 |
///It works for both directed and undirected graphs. |
252 | 252 |
/// |
253 | 253 |
///By definition, a digraph is called \e Eulerian if |
254 | 254 |
///and only if it is connected and the number of incoming and outgoing |
255 | 255 |
///arcs are the same for each node. |
256 | 256 |
///Similarly, an undirected graph is called \e Eulerian if |
257 | 257 |
///and only if it is connected and the number of incident edges is even |
258 | 258 |
///for each node. |
259 | 259 |
/// |
260 | 260 |
///\note There are (di)graphs that are not Eulerian, but still have an |
261 | 261 |
/// Euler tour, since they may contain isolated nodes. |
262 | 262 |
/// |
263 | 263 |
///\sa DiEulerIt, EulerIt |
264 | 264 |
template<typename GR> |
265 | 265 |
#ifdef DOXYGEN |
266 | 266 |
bool |
267 | 267 |
#else |
268 | 268 |
typename enable_if<UndirectedTagIndicator<GR>,bool>::type |
269 | 269 |
eulerian(const GR &g) |
270 | 270 |
{ |
271 | 271 |
for(typename GR::NodeIt n(g);n!=INVALID;++n) |
272 | 272 |
if(countIncEdges(g,n)%2) return false; |
273 | 273 |
return connected(g); |
274 | 274 |
} |
275 | 275 |
template<class GR> |
276 | 276 |
typename disable_if<UndirectedTagIndicator<GR>,bool>::type |
277 | 277 |
#endif |
278 | 278 |
eulerian(const GR &g) |
279 | 279 |
{ |
280 | 280 |
for(typename GR::NodeIt n(g);n!=INVALID;++n) |
281 | 281 |
if(countInArcs(g,n)!=countOutArcs(g,n)) return false; |
282 | 282 |
return connected(undirector(g)); |
283 | 283 |
} |
284 | 284 |
|
285 | 285 |
} |
286 | 286 |
|
287 | 287 |
#endif |
Changeset was too big and was cut off... Show full diff
0 comments (0 inline)