1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
25 #include <lemon/fractional_matching.h>
26 #include <lemon/smart_graph.h>
27 #include <lemon/concepts/graph.h>
28 #include <lemon/concepts/maps.h>
29 #include <lemon/lgf_reader.h>
30 #include <lemon/math.h>
32 #include "test_tools.h"
35 using namespace lemon;
37 GRAPH_TYPEDEFS(SmartGraph);
41 const std::string lgf[lgfn] = {
122 void checkMaxFractionalMatchingCompile()
124 typedef concepts::Graph Graph;
125 typedef Graph::Node Node;
126 typedef Graph::Edge Edge;
132 MaxFractionalMatching<Graph> mat_test(g);
133 const MaxFractionalMatching<Graph>&
134 const_mat_test = mat_test;
138 mat_test.start(true);
139 mat_test.startPerfect();
140 mat_test.startPerfect(true);
143 mat_test.runPerfect();
144 mat_test.runPerfect(true);
146 const_mat_test.matchingSize();
147 const_mat_test.matching(e);
148 const_mat_test.matching(n);
149 const MaxFractionalMatching<Graph>::MatchingMap& mmap =
150 const_mat_test.matchingMap();
153 const_mat_test.barrier(n);
156 void checkMaxWeightedFractionalMatchingCompile()
158 typedef concepts::Graph Graph;
159 typedef Graph::Node Node;
160 typedef Graph::Edge Edge;
161 typedef Graph::EdgeMap<int> WeightMap;
168 MaxWeightedFractionalMatching<Graph> mat_test(g, w);
169 const MaxWeightedFractionalMatching<Graph>&
170 const_mat_test = mat_test;
176 const_mat_test.matchingWeight();
177 const_mat_test.matchingSize();
178 const_mat_test.matching(e);
179 const_mat_test.matching(n);
180 const MaxWeightedFractionalMatching<Graph>::MatchingMap& mmap =
181 const_mat_test.matchingMap();
184 const_mat_test.dualValue();
185 const_mat_test.nodeValue(n);
188 void checkMaxWeightedPerfectFractionalMatchingCompile()
190 typedef concepts::Graph Graph;
191 typedef Graph::Node Node;
192 typedef Graph::Edge Edge;
193 typedef Graph::EdgeMap<int> WeightMap;
200 MaxWeightedPerfectFractionalMatching<Graph> mat_test(g, w);
201 const MaxWeightedPerfectFractionalMatching<Graph>&
202 const_mat_test = mat_test;
208 const_mat_test.matchingWeight();
209 const_mat_test.matching(e);
210 const_mat_test.matching(n);
211 const MaxWeightedPerfectFractionalMatching<Graph>::MatchingMap& mmap =
212 const_mat_test.matchingMap();
215 const_mat_test.dualValue();
216 const_mat_test.nodeValue(n);
219 void checkFractionalMatching(const SmartGraph& graph,
220 const MaxFractionalMatching<SmartGraph>& mfm,
221 bool allow_loops = true) {
223 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
225 for (InArcIt a(graph, n); a != INVALID; ++a) {
226 if (mfm.matching(graph.source(a)) == a) {
230 if (mfm.matching(n) != INVALID) {
231 check(indeg == 1, "Invalid matching");
234 check(indeg == 0, "Invalid matching");
237 check(pv == mfm.matchingSize(), "Wrong matching size");
239 SmartGraph::NodeMap<bool> processed(graph, false);
240 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
241 if (processed[n]) continue;
243 if (mfm.matching(n) == INVALID) continue;
245 Node v = graph.target(mfm.matching(n));
249 v = graph.target(mfm.matching(v));
251 check(num == 2 || num % 2 == 1, "Wrong cycle size");
252 check(allow_loops || num != 1, "Wrong cycle size");
255 int anum = 0, bnum = 0;
256 SmartGraph::NodeMap<bool> neighbours(graph, false);
257 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
258 if (!mfm.barrier(n)) continue;
260 for (SmartGraph::InArcIt a(graph, n); a != INVALID; ++a) {
261 Node u = graph.source(a);
262 if (!allow_loops && u == n) continue;
263 if (!neighbours[u]) {
264 neighbours[u] = true;
269 check(anum - bnum + mfm.matchingSize() == countNodes(graph),
273 void checkPerfectFractionalMatching(const SmartGraph& graph,
274 const MaxFractionalMatching<SmartGraph>& mfm,
275 bool perfect, bool allow_loops = true) {
277 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
279 for (InArcIt a(graph, n); a != INVALID; ++a) {
280 if (mfm.matching(graph.source(a)) == a) {
284 check(mfm.matching(n) != INVALID, "Invalid matching");
285 check(indeg == 1, "Invalid matching");
288 int anum = 0, bnum = 0;
289 SmartGraph::NodeMap<bool> neighbours(graph, false);
290 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
291 if (!mfm.barrier(n)) continue;
293 for (SmartGraph::InArcIt a(graph, n); a != INVALID; ++a) {
294 Node u = graph.source(a);
295 if (!allow_loops && u == n) continue;
296 if (!neighbours[u]) {
297 neighbours[u] = true;
302 check(anum - bnum > 0, "Wrong barrier");
306 void checkWeightedFractionalMatching(const SmartGraph& graph,
307 const SmartGraph::EdgeMap<int>& weight,
308 const MaxWeightedFractionalMatching<SmartGraph>& mwfm,
309 bool allow_loops = true) {
310 for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
311 if (graph.u(e) == graph.v(e) && !allow_loops) continue;
312 int rw = mwfm.nodeValue(graph.u(e)) + mwfm.nodeValue(graph.v(e))
313 - weight[e] * mwfm.dualScale;
315 check(rw >= 0, "Negative reduced weight");
316 check(rw == 0 || !mwfm.matching(e),
317 "Non-zero reduced weight on matching edge");
321 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
323 for (InArcIt a(graph, n); a != INVALID; ++a) {
324 if (mwfm.matching(graph.source(a)) == a) {
328 check(indeg <= 1, "Invalid matching");
329 if (mwfm.matching(n) != INVALID) {
330 check(mwfm.nodeValue(n) >= 0, "Invalid node value");
331 check(indeg == 1, "Invalid matching");
332 pv += weight[mwfm.matching(n)];
333 SmartGraph::Node o = graph.target(mwfm.matching(n));
335 check(mwfm.nodeValue(n) == 0, "Invalid matching");
336 check(indeg == 0, "Invalid matching");
341 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
342 dv += mwfm.nodeValue(n);
345 check(pv * mwfm.dualScale == dv * 2, "Wrong duality");
347 SmartGraph::NodeMap<bool> processed(graph, false);
348 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
349 if (processed[n]) continue;
351 if (mwfm.matching(n) == INVALID) continue;
353 Node v = graph.target(mwfm.matching(n));
357 v = graph.target(mwfm.matching(v));
359 check(num == 2 || num % 2 == 1, "Wrong cycle size");
360 check(allow_loops || num != 1, "Wrong cycle size");
366 void checkWeightedPerfectFractionalMatching(const SmartGraph& graph,
367 const SmartGraph::EdgeMap<int>& weight,
368 const MaxWeightedPerfectFractionalMatching<SmartGraph>& mwpfm,
369 bool allow_loops = true) {
370 for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
371 if (graph.u(e) == graph.v(e) && !allow_loops) continue;
372 int rw = mwpfm.nodeValue(graph.u(e)) + mwpfm.nodeValue(graph.v(e))
373 - weight[e] * mwpfm.dualScale;
375 check(rw >= 0, "Negative reduced weight");
376 check(rw == 0 || !mwpfm.matching(e),
377 "Non-zero reduced weight on matching edge");
381 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
383 for (InArcIt a(graph, n); a != INVALID; ++a) {
384 if (mwpfm.matching(graph.source(a)) == a) {
388 check(mwpfm.matching(n) != INVALID, "Invalid perfect matching");
389 check(indeg == 1, "Invalid perfect matching");
390 pv += weight[mwpfm.matching(n)];
391 SmartGraph::Node o = graph.target(mwpfm.matching(n));
395 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
396 dv += mwpfm.nodeValue(n);
399 check(pv * mwpfm.dualScale == dv * 2, "Wrong duality");
401 SmartGraph::NodeMap<bool> processed(graph, false);
402 for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
403 if (processed[n]) continue;
405 if (mwpfm.matching(n) == INVALID) continue;
407 Node v = graph.target(mwpfm.matching(n));
411 v = graph.target(mwpfm.matching(v));
413 check(num == 2 || num % 2 == 1, "Wrong cycle size");
414 check(allow_loops || num != 1, "Wrong cycle size");
423 for (int i = 0; i < lgfn; ++i) {
425 SmartGraph::EdgeMap<int> weight(graph);
427 istringstream lgfs(lgf[i]);
428 graphReader(graph, lgfs).
429 edgeMap("weight", weight).run();
431 bool perfect_with_loops;
433 MaxFractionalMatching<SmartGraph> mfm(graph, true);
435 checkFractionalMatching(graph, mfm, true);
436 perfect_with_loops = mfm.matchingSize() == countNodes(graph);
439 bool perfect_without_loops;
441 MaxFractionalMatching<SmartGraph> mfm(graph, false);
443 checkFractionalMatching(graph, mfm, false);
444 perfect_without_loops = mfm.matchingSize() == countNodes(graph);
448 MaxFractionalMatching<SmartGraph> mfm(graph, true);
449 bool result = mfm.runPerfect();
450 checkPerfectFractionalMatching(graph, mfm, result, true);
451 check(result == perfect_with_loops, "Wrong perfect matching");
455 MaxFractionalMatching<SmartGraph> mfm(graph, false);
456 bool result = mfm.runPerfect();
457 checkPerfectFractionalMatching(graph, mfm, result, false);
458 check(result == perfect_without_loops, "Wrong perfect matching");
462 MaxWeightedFractionalMatching<SmartGraph> mwfm(graph, weight, true);
464 checkWeightedFractionalMatching(graph, weight, mwfm, true);
468 MaxWeightedFractionalMatching<SmartGraph> mwfm(graph, weight, false);
470 checkWeightedFractionalMatching(graph, weight, mwfm, false);
474 MaxWeightedPerfectFractionalMatching<SmartGraph> mwpfm(graph, weight,
476 bool perfect = mwpfm.run();
477 check(perfect == (mwpfm.matchingSize() == countNodes(graph)),
478 "Perfect matching found");
479 check(perfect == perfect_with_loops, "Wrong perfect matching");
482 checkWeightedPerfectFractionalMatching(graph, weight, mwpfm, true);
487 MaxWeightedPerfectFractionalMatching<SmartGraph> mwpfm(graph, weight,
489 bool perfect = mwpfm.run();
490 check(perfect == (mwpfm.matchingSize() == countNodes(graph)),
491 "Perfect matching found");
492 check(perfect == perfect_without_loops, "Wrong perfect matching");
495 checkWeightedPerfectFractionalMatching(graph, weight, mwpfm, false);