deba@326
|
1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*-
|
deba@326
|
2 |
*
|
deba@326
|
3 |
* This file is a part of LEMON, a generic C++ optimization library.
|
deba@326
|
4 |
*
|
alpar@877
|
5 |
* Copyright (C) 2003-2010
|
deba@326
|
6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
|
deba@326
|
7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES).
|
deba@326
|
8 |
*
|
deba@326
|
9 |
* Permission to use, modify and distribute this software is granted
|
deba@326
|
10 |
* provided that this copyright notice appears in all copies. For
|
deba@326
|
11 |
* precise terms see the accompanying LICENSE file.
|
deba@326
|
12 |
*
|
deba@326
|
13 |
* This software is provided "AS IS" with no warranty of any kind,
|
deba@326
|
14 |
* express or implied, and with no claim as to its suitability for any
|
deba@326
|
15 |
* purpose.
|
deba@326
|
16 |
*
|
deba@326
|
17 |
*/
|
deba@326
|
18 |
|
deba@326
|
19 |
#include <iostream>
|
deba@327
|
20 |
#include <sstream>
|
deba@326
|
21 |
#include <vector>
|
deba@326
|
22 |
#include <queue>
|
deba@326
|
23 |
#include <cstdlib>
|
deba@326
|
24 |
|
kpeter@594
|
25 |
#include <lemon/matching.h>
|
deba@327
|
26 |
#include <lemon/smart_graph.h>
|
kpeter@590
|
27 |
#include <lemon/concepts/graph.h>
|
kpeter@590
|
28 |
#include <lemon/concepts/maps.h>
|
deba@327
|
29 |
#include <lemon/lgf_reader.h>
|
kpeter@590
|
30 |
#include <lemon/math.h>
|
deba@327
|
31 |
|
deba@326
|
32 |
#include "test_tools.h"
|
deba@326
|
33 |
|
deba@326
|
34 |
using namespace std;
|
deba@326
|
35 |
using namespace lemon;
|
deba@326
|
36 |
|
deba@327
|
37 |
GRAPH_TYPEDEFS(SmartGraph);
|
deba@327
|
38 |
|
deba@327
|
39 |
|
deba@327
|
40 |
const int lgfn = 3;
|
deba@327
|
41 |
const std::string lgf[lgfn] = {
|
deba@327
|
42 |
"@nodes\n"
|
deba@327
|
43 |
"label\n"
|
deba@327
|
44 |
"0\n"
|
deba@327
|
45 |
"1\n"
|
deba@327
|
46 |
"2\n"
|
deba@327
|
47 |
"3\n"
|
deba@327
|
48 |
"4\n"
|
deba@327
|
49 |
"5\n"
|
deba@327
|
50 |
"6\n"
|
deba@327
|
51 |
"7\n"
|
deba@327
|
52 |
"@edges\n"
|
deba@327
|
53 |
" label weight\n"
|
deba@327
|
54 |
"7 4 0 984\n"
|
deba@327
|
55 |
"0 7 1 73\n"
|
deba@327
|
56 |
"7 1 2 204\n"
|
deba@327
|
57 |
"2 3 3 583\n"
|
deba@327
|
58 |
"2 7 4 565\n"
|
deba@327
|
59 |
"2 1 5 582\n"
|
deba@327
|
60 |
"0 4 6 551\n"
|
deba@327
|
61 |
"2 5 7 385\n"
|
deba@327
|
62 |
"1 5 8 561\n"
|
deba@327
|
63 |
"5 3 9 484\n"
|
deba@327
|
64 |
"7 5 10 904\n"
|
deba@327
|
65 |
"3 6 11 47\n"
|
deba@327
|
66 |
"7 6 12 888\n"
|
deba@327
|
67 |
"3 0 13 747\n"
|
deba@327
|
68 |
"6 1 14 310\n",
|
deba@327
|
69 |
|
deba@327
|
70 |
"@nodes\n"
|
deba@327
|
71 |
"label\n"
|
deba@327
|
72 |
"0\n"
|
deba@327
|
73 |
"1\n"
|
deba@327
|
74 |
"2\n"
|
deba@327
|
75 |
"3\n"
|
deba@327
|
76 |
"4\n"
|
deba@327
|
77 |
"5\n"
|
deba@327
|
78 |
"6\n"
|
deba@327
|
79 |
"7\n"
|
deba@327
|
80 |
"@edges\n"
|
deba@327
|
81 |
" label weight\n"
|
deba@327
|
82 |
"2 5 0 710\n"
|
deba@327
|
83 |
"0 5 1 241\n"
|
deba@327
|
84 |
"2 4 2 856\n"
|
deba@327
|
85 |
"2 6 3 762\n"
|
deba@327
|
86 |
"4 1 4 747\n"
|
deba@327
|
87 |
"6 1 5 962\n"
|
deba@327
|
88 |
"4 7 6 723\n"
|
deba@327
|
89 |
"1 7 7 661\n"
|
deba@327
|
90 |
"2 3 8 376\n"
|
deba@327
|
91 |
"1 0 9 416\n"
|
deba@327
|
92 |
"6 7 10 391\n",
|
deba@327
|
93 |
|
deba@327
|
94 |
"@nodes\n"
|
deba@327
|
95 |
"label\n"
|
deba@327
|
96 |
"0\n"
|
deba@327
|
97 |
"1\n"
|
deba@327
|
98 |
"2\n"
|
deba@327
|
99 |
"3\n"
|
deba@327
|
100 |
"4\n"
|
deba@327
|
101 |
"5\n"
|
deba@327
|
102 |
"6\n"
|
deba@327
|
103 |
"7\n"
|
deba@327
|
104 |
"@edges\n"
|
deba@327
|
105 |
" label weight\n"
|
deba@327
|
106 |
"6 2 0 553\n"
|
deba@327
|
107 |
"0 7 1 653\n"
|
deba@327
|
108 |
"6 3 2 22\n"
|
deba@327
|
109 |
"4 7 3 846\n"
|
deba@327
|
110 |
"7 2 4 981\n"
|
deba@327
|
111 |
"7 6 5 250\n"
|
deba@327
|
112 |
"5 2 6 539\n",
|
deba@327
|
113 |
};
|
deba@327
|
114 |
|
kpeter@590
|
115 |
void checkMaxMatchingCompile()
|
kpeter@590
|
116 |
{
|
kpeter@590
|
117 |
typedef concepts::Graph Graph;
|
kpeter@590
|
118 |
typedef Graph::Node Node;
|
kpeter@590
|
119 |
typedef Graph::Edge Edge;
|
kpeter@590
|
120 |
typedef Graph::EdgeMap<bool> MatMap;
|
kpeter@590
|
121 |
|
kpeter@590
|
122 |
Graph g;
|
kpeter@590
|
123 |
Node n;
|
kpeter@590
|
124 |
Edge e;
|
kpeter@590
|
125 |
MatMap mat(g);
|
kpeter@590
|
126 |
|
kpeter@590
|
127 |
MaxMatching<Graph> mat_test(g);
|
kpeter@590
|
128 |
const MaxMatching<Graph>&
|
kpeter@590
|
129 |
const_mat_test = mat_test;
|
kpeter@590
|
130 |
|
kpeter@590
|
131 |
mat_test.init();
|
kpeter@590
|
132 |
mat_test.greedyInit();
|
kpeter@590
|
133 |
mat_test.matchingInit(mat);
|
kpeter@590
|
134 |
mat_test.startSparse();
|
kpeter@590
|
135 |
mat_test.startDense();
|
kpeter@590
|
136 |
mat_test.run();
|
alpar@877
|
137 |
|
kpeter@590
|
138 |
const_mat_test.matchingSize();
|
kpeter@590
|
139 |
const_mat_test.matching(e);
|
kpeter@590
|
140 |
const_mat_test.matching(n);
|
kpeter@593
|
141 |
const MaxMatching<Graph>::MatchingMap& mmap =
|
kpeter@593
|
142 |
const_mat_test.matchingMap();
|
kpeter@593
|
143 |
e = mmap[n];
|
kpeter@590
|
144 |
const_mat_test.mate(n);
|
kpeter@590
|
145 |
|
alpar@877
|
146 |
MaxMatching<Graph>::Status stat =
|
kpeter@593
|
147 |
const_mat_test.status(n);
|
alpar@1007
|
148 |
ignore_unused_variable_warning(stat);
|
kpeter@593
|
149 |
const MaxMatching<Graph>::StatusMap& smap =
|
kpeter@593
|
150 |
const_mat_test.statusMap();
|
kpeter@593
|
151 |
stat = smap[n];
|
kpeter@590
|
152 |
const_mat_test.barrier(n);
|
kpeter@590
|
153 |
}
|
kpeter@590
|
154 |
|
kpeter@590
|
155 |
void checkMaxWeightedMatchingCompile()
|
kpeter@590
|
156 |
{
|
kpeter@590
|
157 |
typedef concepts::Graph Graph;
|
kpeter@590
|
158 |
typedef Graph::Node Node;
|
kpeter@590
|
159 |
typedef Graph::Edge Edge;
|
kpeter@590
|
160 |
typedef Graph::EdgeMap<int> WeightMap;
|
kpeter@590
|
161 |
|
kpeter@590
|
162 |
Graph g;
|
kpeter@590
|
163 |
Node n;
|
kpeter@590
|
164 |
Edge e;
|
kpeter@590
|
165 |
WeightMap w(g);
|
kpeter@590
|
166 |
|
kpeter@590
|
167 |
MaxWeightedMatching<Graph> mat_test(g, w);
|
kpeter@590
|
168 |
const MaxWeightedMatching<Graph>&
|
kpeter@590
|
169 |
const_mat_test = mat_test;
|
kpeter@590
|
170 |
|
kpeter@590
|
171 |
mat_test.init();
|
kpeter@590
|
172 |
mat_test.start();
|
kpeter@590
|
173 |
mat_test.run();
|
alpar@877
|
174 |
|
kpeter@593
|
175 |
const_mat_test.matchingWeight();
|
kpeter@590
|
176 |
const_mat_test.matchingSize();
|
kpeter@590
|
177 |
const_mat_test.matching(e);
|
kpeter@590
|
178 |
const_mat_test.matching(n);
|
kpeter@593
|
179 |
const MaxWeightedMatching<Graph>::MatchingMap& mmap =
|
kpeter@593
|
180 |
const_mat_test.matchingMap();
|
kpeter@593
|
181 |
e = mmap[n];
|
kpeter@590
|
182 |
const_mat_test.mate(n);
|
alpar@877
|
183 |
|
kpeter@590
|
184 |
int k = 0;
|
kpeter@590
|
185 |
const_mat_test.dualValue();
|
kpeter@590
|
186 |
const_mat_test.nodeValue(n);
|
kpeter@590
|
187 |
const_mat_test.blossomNum();
|
kpeter@590
|
188 |
const_mat_test.blossomSize(k);
|
kpeter@590
|
189 |
const_mat_test.blossomValue(k);
|
kpeter@590
|
190 |
}
|
kpeter@590
|
191 |
|
kpeter@590
|
192 |
void checkMaxWeightedPerfectMatchingCompile()
|
kpeter@590
|
193 |
{
|
kpeter@590
|
194 |
typedef concepts::Graph Graph;
|
kpeter@590
|
195 |
typedef Graph::Node Node;
|
kpeter@590
|
196 |
typedef Graph::Edge Edge;
|
kpeter@590
|
197 |
typedef Graph::EdgeMap<int> WeightMap;
|
kpeter@590
|
198 |
|
kpeter@590
|
199 |
Graph g;
|
kpeter@590
|
200 |
Node n;
|
kpeter@590
|
201 |
Edge e;
|
kpeter@590
|
202 |
WeightMap w(g);
|
kpeter@590
|
203 |
|
kpeter@590
|
204 |
MaxWeightedPerfectMatching<Graph> mat_test(g, w);
|
kpeter@590
|
205 |
const MaxWeightedPerfectMatching<Graph>&
|
kpeter@590
|
206 |
const_mat_test = mat_test;
|
kpeter@590
|
207 |
|
kpeter@590
|
208 |
mat_test.init();
|
kpeter@590
|
209 |
mat_test.start();
|
kpeter@590
|
210 |
mat_test.run();
|
alpar@877
|
211 |
|
kpeter@593
|
212 |
const_mat_test.matchingWeight();
|
kpeter@590
|
213 |
const_mat_test.matching(e);
|
kpeter@590
|
214 |
const_mat_test.matching(n);
|
kpeter@593
|
215 |
const MaxWeightedPerfectMatching<Graph>::MatchingMap& mmap =
|
kpeter@593
|
216 |
const_mat_test.matchingMap();
|
kpeter@593
|
217 |
e = mmap[n];
|
kpeter@590
|
218 |
const_mat_test.mate(n);
|
alpar@877
|
219 |
|
kpeter@590
|
220 |
int k = 0;
|
kpeter@590
|
221 |
const_mat_test.dualValue();
|
kpeter@590
|
222 |
const_mat_test.nodeValue(n);
|
kpeter@590
|
223 |
const_mat_test.blossomNum();
|
kpeter@590
|
224 |
const_mat_test.blossomSize(k);
|
kpeter@590
|
225 |
const_mat_test.blossomValue(k);
|
kpeter@590
|
226 |
}
|
kpeter@590
|
227 |
|
deba@327
|
228 |
void checkMatching(const SmartGraph& graph,
|
deba@327
|
229 |
const MaxMatching<SmartGraph>& mm) {
|
deba@327
|
230 |
int num = 0;
|
deba@327
|
231 |
|
deba@327
|
232 |
IntNodeMap comp_index(graph);
|
deba@327
|
233 |
UnionFind<IntNodeMap> comp(comp_index);
|
deba@327
|
234 |
|
deba@327
|
235 |
int barrier_num = 0;
|
deba@327
|
236 |
|
deba@327
|
237 |
for (NodeIt n(graph); n != INVALID; ++n) {
|
kpeter@593
|
238 |
check(mm.status(n) == MaxMatching<SmartGraph>::EVEN ||
|
deba@327
|
239 |
mm.matching(n) != INVALID, "Wrong Gallai-Edmonds decomposition");
|
kpeter@593
|
240 |
if (mm.status(n) == MaxMatching<SmartGraph>::ODD) {
|
deba@327
|
241 |
++barrier_num;
|
deba@327
|
242 |
} else {
|
deba@327
|
243 |
comp.insert(n);
|
deba@327
|
244 |
}
|
deba@327
|
245 |
}
|
deba@327
|
246 |
|
deba@327
|
247 |
for (EdgeIt e(graph); e != INVALID; ++e) {
|
deba@327
|
248 |
if (mm.matching(e)) {
|
deba@327
|
249 |
check(e == mm.matching(graph.u(e)), "Wrong matching");
|
deba@327
|
250 |
check(e == mm.matching(graph.v(e)), "Wrong matching");
|
deba@327
|
251 |
++num;
|
deba@327
|
252 |
}
|
kpeter@593
|
253 |
check(mm.status(graph.u(e)) != MaxMatching<SmartGraph>::EVEN ||
|
kpeter@593
|
254 |
mm.status(graph.v(e)) != MaxMatching<SmartGraph>::MATCHED,
|
deba@327
|
255 |
"Wrong Gallai-Edmonds decomposition");
|
deba@327
|
256 |
|
kpeter@593
|
257 |
check(mm.status(graph.v(e)) != MaxMatching<SmartGraph>::EVEN ||
|
kpeter@593
|
258 |
mm.status(graph.u(e)) != MaxMatching<SmartGraph>::MATCHED,
|
deba@327
|
259 |
"Wrong Gallai-Edmonds decomposition");
|
deba@327
|
260 |
|
kpeter@593
|
261 |
if (mm.status(graph.u(e)) != MaxMatching<SmartGraph>::ODD &&
|
kpeter@593
|
262 |
mm.status(graph.v(e)) != MaxMatching<SmartGraph>::ODD) {
|
deba@327
|
263 |
comp.join(graph.u(e), graph.v(e));
|
deba@327
|
264 |
}
|
deba@327
|
265 |
}
|
deba@327
|
266 |
|
deba@327
|
267 |
std::set<int> comp_root;
|
deba@327
|
268 |
int odd_comp_num = 0;
|
deba@327
|
269 |
for (NodeIt n(graph); n != INVALID; ++n) {
|
kpeter@593
|
270 |
if (mm.status(n) != MaxMatching<SmartGraph>::ODD) {
|
deba@327
|
271 |
int root = comp.find(n);
|
deba@327
|
272 |
if (comp_root.find(root) == comp_root.end()) {
|
deba@327
|
273 |
comp_root.insert(root);
|
deba@327
|
274 |
if (comp.size(n) % 2 == 1) {
|
deba@327
|
275 |
++odd_comp_num;
|
deba@327
|
276 |
}
|
deba@327
|
277 |
}
|
deba@327
|
278 |
}
|
deba@327
|
279 |
}
|
deba@327
|
280 |
|
deba@327
|
281 |
check(mm.matchingSize() == num, "Wrong matching");
|
deba@327
|
282 |
check(2 * num == countNodes(graph) - (odd_comp_num - barrier_num),
|
deba@327
|
283 |
"Wrong matching");
|
deba@327
|
284 |
return;
|
deba@327
|
285 |
}
|
deba@327
|
286 |
|
deba@327
|
287 |
void checkWeightedMatching(const SmartGraph& graph,
|
deba@327
|
288 |
const SmartGraph::EdgeMap<int>& weight,
|
deba@327
|
289 |
const MaxWeightedMatching<SmartGraph>& mwm) {
|
deba@327
|
290 |
for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
|
deba@327
|
291 |
if (graph.u(e) == graph.v(e)) continue;
|
deba@327
|
292 |
int rw = mwm.nodeValue(graph.u(e)) + mwm.nodeValue(graph.v(e));
|
deba@327
|
293 |
|
deba@327
|
294 |
for (int i = 0; i < mwm.blossomNum(); ++i) {
|
deba@327
|
295 |
bool s = false, t = false;
|
deba@327
|
296 |
for (MaxWeightedMatching<SmartGraph>::BlossomIt n(mwm, i);
|
deba@327
|
297 |
n != INVALID; ++n) {
|
deba@327
|
298 |
if (graph.u(e) == n) s = true;
|
deba@327
|
299 |
if (graph.v(e) == n) t = true;
|
deba@327
|
300 |
}
|
deba@327
|
301 |
if (s == true && t == true) {
|
deba@327
|
302 |
rw += mwm.blossomValue(i);
|
deba@327
|
303 |
}
|
deba@327
|
304 |
}
|
deba@327
|
305 |
rw -= weight[e] * mwm.dualScale;
|
deba@327
|
306 |
|
deba@327
|
307 |
check(rw >= 0, "Negative reduced weight");
|
deba@327
|
308 |
check(rw == 0 || !mwm.matching(e),
|
deba@327
|
309 |
"Non-zero reduced weight on matching edge");
|
deba@327
|
310 |
}
|
deba@327
|
311 |
|
deba@327
|
312 |
int pv = 0;
|
deba@327
|
313 |
for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
|
deba@327
|
314 |
if (mwm.matching(n) != INVALID) {
|
deba@327
|
315 |
check(mwm.nodeValue(n) >= 0, "Invalid node value");
|
deba@327
|
316 |
pv += weight[mwm.matching(n)];
|
deba@327
|
317 |
SmartGraph::Node o = graph.target(mwm.matching(n));
|
deba@327
|
318 |
check(mwm.mate(n) == o, "Invalid matching");
|
deba@327
|
319 |
check(mwm.matching(n) == graph.oppositeArc(mwm.matching(o)),
|
deba@327
|
320 |
"Invalid matching");
|
deba@327
|
321 |
} else {
|
deba@327
|
322 |
check(mwm.mate(n) == INVALID, "Invalid matching");
|
deba@327
|
323 |
check(mwm.nodeValue(n) == 0, "Invalid matching");
|
deba@327
|
324 |
}
|
deba@327
|
325 |
}
|
deba@327
|
326 |
|
deba@327
|
327 |
int dv = 0;
|
deba@327
|
328 |
for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
|
deba@327
|
329 |
dv += mwm.nodeValue(n);
|
deba@327
|
330 |
}
|
deba@327
|
331 |
|
deba@327
|
332 |
for (int i = 0; i < mwm.blossomNum(); ++i) {
|
deba@327
|
333 |
check(mwm.blossomValue(i) >= 0, "Invalid blossom value");
|
deba@327
|
334 |
check(mwm.blossomSize(i) % 2 == 1, "Even blossom size");
|
deba@327
|
335 |
dv += mwm.blossomValue(i) * ((mwm.blossomSize(i) - 1) / 2);
|
deba@327
|
336 |
}
|
deba@327
|
337 |
|
deba@327
|
338 |
check(pv * mwm.dualScale == dv * 2, "Wrong duality");
|
deba@327
|
339 |
|
deba@327
|
340 |
return;
|
deba@327
|
341 |
}
|
deba@327
|
342 |
|
deba@327
|
343 |
void checkWeightedPerfectMatching(const SmartGraph& graph,
|
deba@327
|
344 |
const SmartGraph::EdgeMap<int>& weight,
|
deba@327
|
345 |
const MaxWeightedPerfectMatching<SmartGraph>& mwpm) {
|
deba@327
|
346 |
for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
|
deba@327
|
347 |
if (graph.u(e) == graph.v(e)) continue;
|
deba@327
|
348 |
int rw = mwpm.nodeValue(graph.u(e)) + mwpm.nodeValue(graph.v(e));
|
deba@327
|
349 |
|
deba@327
|
350 |
for (int i = 0; i < mwpm.blossomNum(); ++i) {
|
deba@327
|
351 |
bool s = false, t = false;
|
deba@327
|
352 |
for (MaxWeightedPerfectMatching<SmartGraph>::BlossomIt n(mwpm, i);
|
deba@327
|
353 |
n != INVALID; ++n) {
|
deba@327
|
354 |
if (graph.u(e) == n) s = true;
|
deba@327
|
355 |
if (graph.v(e) == n) t = true;
|
deba@327
|
356 |
}
|
deba@327
|
357 |
if (s == true && t == true) {
|
deba@327
|
358 |
rw += mwpm.blossomValue(i);
|
deba@327
|
359 |
}
|
deba@327
|
360 |
}
|
deba@327
|
361 |
rw -= weight[e] * mwpm.dualScale;
|
deba@327
|
362 |
|
deba@327
|
363 |
check(rw >= 0, "Negative reduced weight");
|
deba@327
|
364 |
check(rw == 0 || !mwpm.matching(e),
|
deba@327
|
365 |
"Non-zero reduced weight on matching edge");
|
deba@327
|
366 |
}
|
deba@327
|
367 |
|
deba@327
|
368 |
int pv = 0;
|
deba@327
|
369 |
for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
|
deba@327
|
370 |
check(mwpm.matching(n) != INVALID, "Non perfect");
|
deba@327
|
371 |
pv += weight[mwpm.matching(n)];
|
deba@327
|
372 |
SmartGraph::Node o = graph.target(mwpm.matching(n));
|
deba@327
|
373 |
check(mwpm.mate(n) == o, "Invalid matching");
|
deba@327
|
374 |
check(mwpm.matching(n) == graph.oppositeArc(mwpm.matching(o)),
|
deba@327
|
375 |
"Invalid matching");
|
deba@327
|
376 |
}
|
deba@327
|
377 |
|
deba@327
|
378 |
int dv = 0;
|
deba@327
|
379 |
for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
|
deba@327
|
380 |
dv += mwpm.nodeValue(n);
|
deba@327
|
381 |
}
|
deba@327
|
382 |
|
deba@327
|
383 |
for (int i = 0; i < mwpm.blossomNum(); ++i) {
|
deba@327
|
384 |
check(mwpm.blossomValue(i) >= 0, "Invalid blossom value");
|
deba@327
|
385 |
check(mwpm.blossomSize(i) % 2 == 1, "Even blossom size");
|
deba@327
|
386 |
dv += mwpm.blossomValue(i) * ((mwpm.blossomSize(i) - 1) / 2);
|
deba@327
|
387 |
}
|
deba@327
|
388 |
|
deba@327
|
389 |
check(pv * mwpm.dualScale == dv * 2, "Wrong duality");
|
deba@327
|
390 |
|
deba@327
|
391 |
return;
|
deba@327
|
392 |
}
|
deba@327
|
393 |
|
deba@327
|
394 |
|
deba@326
|
395 |
int main() {
|
deba@326
|
396 |
|
deba@327
|
397 |
for (int i = 0; i < lgfn; ++i) {
|
deba@327
|
398 |
SmartGraph graph;
|
deba@327
|
399 |
SmartGraph::EdgeMap<int> weight(graph);
|
deba@326
|
400 |
|
deba@327
|
401 |
istringstream lgfs(lgf[i]);
|
deba@327
|
402 |
graphReader(graph, lgfs).
|
deba@327
|
403 |
edgeMap("weight", weight).run();
|
deba@326
|
404 |
|
deba@870
|
405 |
bool perfect;
|
deba@870
|
406 |
{
|
deba@870
|
407 |
MaxMatching<SmartGraph> mm(graph);
|
deba@870
|
408 |
mm.run();
|
deba@870
|
409 |
checkMatching(graph, mm);
|
deba@870
|
410 |
perfect = 2 * mm.matchingSize() == countNodes(graph);
|
deba@870
|
411 |
}
|
deba@326
|
412 |
|
deba@870
|
413 |
{
|
deba@870
|
414 |
MaxWeightedMatching<SmartGraph> mwm(graph, weight);
|
deba@870
|
415 |
mwm.run();
|
deba@870
|
416 |
checkWeightedMatching(graph, weight, mwm);
|
deba@870
|
417 |
}
|
deba@326
|
418 |
|
deba@870
|
419 |
{
|
deba@870
|
420 |
MaxWeightedMatching<SmartGraph> mwm(graph, weight);
|
deba@870
|
421 |
mwm.init();
|
deba@870
|
422 |
mwm.start();
|
deba@870
|
423 |
checkWeightedMatching(graph, weight, mwm);
|
deba@870
|
424 |
}
|
deba@326
|
425 |
|
deba@870
|
426 |
{
|
deba@870
|
427 |
MaxWeightedPerfectMatching<SmartGraph> mwpm(graph, weight);
|
deba@870
|
428 |
bool result = mwpm.run();
|
deba@326
|
429 |
|
deba@870
|
430 |
check(result == perfect, "Perfect matching found");
|
deba@870
|
431 |
if (perfect) {
|
deba@870
|
432 |
checkWeightedPerfectMatching(graph, weight, mwpm);
|
deba@870
|
433 |
}
|
deba@870
|
434 |
}
|
kpeter@594
|
435 |
|
deba@870
|
436 |
{
|
deba@870
|
437 |
MaxWeightedPerfectMatching<SmartGraph> mwpm(graph, weight);
|
deba@870
|
438 |
mwpm.init();
|
deba@870
|
439 |
bool result = mwpm.start();
|
alpar@877
|
440 |
|
deba@870
|
441 |
check(result == perfect, "Perfect matching found");
|
deba@870
|
442 |
if (perfect) {
|
deba@870
|
443 |
checkWeightedPerfectMatching(graph, weight, mwpm);
|
deba@870
|
444 |
}
|
deba@326
|
445 |
}
|
deba@326
|
446 |
}
|
deba@326
|
447 |
|
deba@326
|
448 |
return 0;
|
deba@326
|
449 |
}
|