deba@326: /* -*- mode: C++; indent-tabs-mode: nil; -*-
deba@326:  *
deba@326:  * This file is a part of LEMON, a generic C++ optimization library.
deba@326:  *
alpar@440:  * Copyright (C) 2003-2009
deba@326:  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
deba@326:  * (Egervary Research Group on Combinatorial Optimization, EGRES).
deba@326:  *
deba@326:  * Permission to use, modify and distribute this software is granted
deba@326:  * provided that this copyright notice appears in all copies. For
deba@326:  * precise terms see the accompanying LICENSE file.
deba@326:  *
deba@326:  * This software is provided "AS IS" with no warranty of any kind,
deba@326:  * express or implied, and with no claim as to its suitability for any
deba@326:  * purpose.
deba@326:  *
deba@326:  */
deba@326: 
deba@326: #include <iostream>
deba@327: #include <sstream>
deba@326: #include <vector>
deba@326: #include <queue>
deba@326: #include <cstdlib>
deba@326: 
kpeter@594: #include <lemon/matching.h>
deba@327: #include <lemon/smart_graph.h>
kpeter@590: #include <lemon/concepts/graph.h>
kpeter@590: #include <lemon/concepts/maps.h>
deba@327: #include <lemon/lgf_reader.h>
kpeter@590: #include <lemon/math.h>
deba@327: 
deba@326: #include "test_tools.h"
deba@326: 
deba@326: using namespace std;
deba@326: using namespace lemon;
deba@326: 
deba@327: GRAPH_TYPEDEFS(SmartGraph);
deba@327: 
deba@327: 
deba@327: const int lgfn = 3;
deba@327: const std::string lgf[lgfn] = {
deba@327:   "@nodes\n"
deba@327:   "label\n"
deba@327:   "0\n"
deba@327:   "1\n"
deba@327:   "2\n"
deba@327:   "3\n"
deba@327:   "4\n"
deba@327:   "5\n"
deba@327:   "6\n"
deba@327:   "7\n"
deba@327:   "@edges\n"
deba@327:   "     label  weight\n"
deba@327:   "7 4  0      984\n"
deba@327:   "0 7  1      73\n"
deba@327:   "7 1  2      204\n"
deba@327:   "2 3  3      583\n"
deba@327:   "2 7  4      565\n"
deba@327:   "2 1  5      582\n"
deba@327:   "0 4  6      551\n"
deba@327:   "2 5  7      385\n"
deba@327:   "1 5  8      561\n"
deba@327:   "5 3  9      484\n"
deba@327:   "7 5  10     904\n"
deba@327:   "3 6  11     47\n"
deba@327:   "7 6  12     888\n"
deba@327:   "3 0  13     747\n"
deba@327:   "6 1  14     310\n",
deba@327: 
deba@327:   "@nodes\n"
deba@327:   "label\n"
deba@327:   "0\n"
deba@327:   "1\n"
deba@327:   "2\n"
deba@327:   "3\n"
deba@327:   "4\n"
deba@327:   "5\n"
deba@327:   "6\n"
deba@327:   "7\n"
deba@327:   "@edges\n"
deba@327:   "     label  weight\n"
deba@327:   "2 5  0      710\n"
deba@327:   "0 5  1      241\n"
deba@327:   "2 4  2      856\n"
deba@327:   "2 6  3      762\n"
deba@327:   "4 1  4      747\n"
deba@327:   "6 1  5      962\n"
deba@327:   "4 7  6      723\n"
deba@327:   "1 7  7      661\n"
deba@327:   "2 3  8      376\n"
deba@327:   "1 0  9      416\n"
deba@327:   "6 7  10     391\n",
deba@327: 
deba@327:   "@nodes\n"
deba@327:   "label\n"
deba@327:   "0\n"
deba@327:   "1\n"
deba@327:   "2\n"
deba@327:   "3\n"
deba@327:   "4\n"
deba@327:   "5\n"
deba@327:   "6\n"
deba@327:   "7\n"
deba@327:   "@edges\n"
deba@327:   "     label  weight\n"
deba@327:   "6 2  0      553\n"
deba@327:   "0 7  1      653\n"
deba@327:   "6 3  2      22\n"
deba@327:   "4 7  3      846\n"
deba@327:   "7 2  4      981\n"
deba@327:   "7 6  5      250\n"
deba@327:   "5 2  6      539\n",
deba@327: };
deba@327: 
kpeter@590: void checkMaxMatchingCompile()
kpeter@590: {
kpeter@590:   typedef concepts::Graph Graph;
kpeter@590:   typedef Graph::Node Node;
kpeter@590:   typedef Graph::Edge Edge;
kpeter@590:   typedef Graph::EdgeMap<bool> MatMap;
kpeter@590: 
kpeter@590:   Graph g;
kpeter@590:   Node n;
kpeter@590:   Edge e;
kpeter@590:   MatMap mat(g);
kpeter@590: 
kpeter@590:   MaxMatching<Graph> mat_test(g);
kpeter@590:   const MaxMatching<Graph>&
kpeter@590:     const_mat_test = mat_test;
kpeter@590: 
kpeter@590:   mat_test.init();
kpeter@590:   mat_test.greedyInit();
kpeter@590:   mat_test.matchingInit(mat);
kpeter@590:   mat_test.startSparse();
kpeter@590:   mat_test.startDense();
kpeter@590:   mat_test.run();
kpeter@590:   
kpeter@590:   const_mat_test.matchingSize();
kpeter@590:   const_mat_test.matching(e);
kpeter@590:   const_mat_test.matching(n);
kpeter@593:   const MaxMatching<Graph>::MatchingMap& mmap =
kpeter@593:     const_mat_test.matchingMap();
kpeter@593:   e = mmap[n];
kpeter@590:   const_mat_test.mate(n);
kpeter@590: 
kpeter@590:   MaxMatching<Graph>::Status stat = 
kpeter@593:     const_mat_test.status(n);
kpeter@593:   const MaxMatching<Graph>::StatusMap& smap =
kpeter@593:     const_mat_test.statusMap();
kpeter@593:   stat = smap[n];
kpeter@590:   const_mat_test.barrier(n);
kpeter@590: }
kpeter@590: 
kpeter@590: void checkMaxWeightedMatchingCompile()
kpeter@590: {
kpeter@590:   typedef concepts::Graph Graph;
kpeter@590:   typedef Graph::Node Node;
kpeter@590:   typedef Graph::Edge Edge;
kpeter@590:   typedef Graph::EdgeMap<int> WeightMap;
kpeter@590: 
kpeter@590:   Graph g;
kpeter@590:   Node n;
kpeter@590:   Edge e;
kpeter@590:   WeightMap w(g);
kpeter@590: 
kpeter@590:   MaxWeightedMatching<Graph> mat_test(g, w);
kpeter@590:   const MaxWeightedMatching<Graph>&
kpeter@590:     const_mat_test = mat_test;
kpeter@590: 
kpeter@590:   mat_test.init();
kpeter@590:   mat_test.start();
kpeter@590:   mat_test.run();
kpeter@590:   
kpeter@593:   const_mat_test.matchingWeight();
kpeter@590:   const_mat_test.matchingSize();
kpeter@590:   const_mat_test.matching(e);
kpeter@590:   const_mat_test.matching(n);
kpeter@593:   const MaxWeightedMatching<Graph>::MatchingMap& mmap =
kpeter@593:     const_mat_test.matchingMap();
kpeter@593:   e = mmap[n];
kpeter@590:   const_mat_test.mate(n);
kpeter@590:   
kpeter@590:   int k = 0;
kpeter@590:   const_mat_test.dualValue();
kpeter@590:   const_mat_test.nodeValue(n);
kpeter@590:   const_mat_test.blossomNum();
kpeter@590:   const_mat_test.blossomSize(k);
kpeter@590:   const_mat_test.blossomValue(k);
kpeter@590: }
kpeter@590: 
kpeter@590: void checkMaxWeightedPerfectMatchingCompile()
kpeter@590: {
kpeter@590:   typedef concepts::Graph Graph;
kpeter@590:   typedef Graph::Node Node;
kpeter@590:   typedef Graph::Edge Edge;
kpeter@590:   typedef Graph::EdgeMap<int> WeightMap;
kpeter@590: 
kpeter@590:   Graph g;
kpeter@590:   Node n;
kpeter@590:   Edge e;
kpeter@590:   WeightMap w(g);
kpeter@590: 
kpeter@590:   MaxWeightedPerfectMatching<Graph> mat_test(g, w);
kpeter@590:   const MaxWeightedPerfectMatching<Graph>&
kpeter@590:     const_mat_test = mat_test;
kpeter@590: 
kpeter@590:   mat_test.init();
kpeter@590:   mat_test.start();
kpeter@590:   mat_test.run();
kpeter@590:   
kpeter@593:   const_mat_test.matchingWeight();
kpeter@590:   const_mat_test.matching(e);
kpeter@590:   const_mat_test.matching(n);
kpeter@593:   const MaxWeightedPerfectMatching<Graph>::MatchingMap& mmap =
kpeter@593:     const_mat_test.matchingMap();
kpeter@593:   e = mmap[n];
kpeter@590:   const_mat_test.mate(n);
kpeter@590:   
kpeter@590:   int k = 0;
kpeter@590:   const_mat_test.dualValue();
kpeter@590:   const_mat_test.nodeValue(n);
kpeter@590:   const_mat_test.blossomNum();
kpeter@590:   const_mat_test.blossomSize(k);
kpeter@590:   const_mat_test.blossomValue(k);
kpeter@590: }
kpeter@590: 
deba@327: void checkMatching(const SmartGraph& graph,
deba@327:                    const MaxMatching<SmartGraph>& mm) {
deba@327:   int num = 0;
deba@327: 
deba@327:   IntNodeMap comp_index(graph);
deba@327:   UnionFind<IntNodeMap> comp(comp_index);
deba@327: 
deba@327:   int barrier_num = 0;
deba@327: 
deba@327:   for (NodeIt n(graph); n != INVALID; ++n) {
kpeter@593:     check(mm.status(n) == MaxMatching<SmartGraph>::EVEN ||
deba@327:           mm.matching(n) != INVALID, "Wrong Gallai-Edmonds decomposition");
kpeter@593:     if (mm.status(n) == MaxMatching<SmartGraph>::ODD) {
deba@327:       ++barrier_num;
deba@327:     } else {
deba@327:       comp.insert(n);
deba@327:     }
deba@327:   }
deba@327: 
deba@327:   for (EdgeIt e(graph); e != INVALID; ++e) {
deba@327:     if (mm.matching(e)) {
deba@327:       check(e == mm.matching(graph.u(e)), "Wrong matching");
deba@327:       check(e == mm.matching(graph.v(e)), "Wrong matching");
deba@327:       ++num;
deba@327:     }
kpeter@593:     check(mm.status(graph.u(e)) != MaxMatching<SmartGraph>::EVEN ||
kpeter@593:           mm.status(graph.v(e)) != MaxMatching<SmartGraph>::MATCHED,
deba@327:           "Wrong Gallai-Edmonds decomposition");
deba@327: 
kpeter@593:     check(mm.status(graph.v(e)) != MaxMatching<SmartGraph>::EVEN ||
kpeter@593:           mm.status(graph.u(e)) != MaxMatching<SmartGraph>::MATCHED,
deba@327:           "Wrong Gallai-Edmonds decomposition");
deba@327: 
kpeter@593:     if (mm.status(graph.u(e)) != MaxMatching<SmartGraph>::ODD &&
kpeter@593:         mm.status(graph.v(e)) != MaxMatching<SmartGraph>::ODD) {
deba@327:       comp.join(graph.u(e), graph.v(e));
deba@327:     }
deba@327:   }
deba@327: 
deba@327:   std::set<int> comp_root;
deba@327:   int odd_comp_num = 0;
deba@327:   for (NodeIt n(graph); n != INVALID; ++n) {
kpeter@593:     if (mm.status(n) != MaxMatching<SmartGraph>::ODD) {
deba@327:       int root = comp.find(n);
deba@327:       if (comp_root.find(root) == comp_root.end()) {
deba@327:         comp_root.insert(root);
deba@327:         if (comp.size(n) % 2 == 1) {
deba@327:           ++odd_comp_num;
deba@327:         }
deba@327:       }
deba@327:     }
deba@327:   }
deba@327: 
deba@327:   check(mm.matchingSize() == num, "Wrong matching");
deba@327:   check(2 * num == countNodes(graph) - (odd_comp_num - barrier_num),
deba@327:          "Wrong matching");
deba@327:   return;
deba@327: }
deba@327: 
deba@327: void checkWeightedMatching(const SmartGraph& graph,
deba@327:                    const SmartGraph::EdgeMap<int>& weight,
deba@327:                    const MaxWeightedMatching<SmartGraph>& mwm) {
deba@327:   for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
deba@327:     if (graph.u(e) == graph.v(e)) continue;
deba@327:     int rw = mwm.nodeValue(graph.u(e)) + mwm.nodeValue(graph.v(e));
deba@327: 
deba@327:     for (int i = 0; i < mwm.blossomNum(); ++i) {
deba@327:       bool s = false, t = false;
deba@327:       for (MaxWeightedMatching<SmartGraph>::BlossomIt n(mwm, i);
deba@327:            n != INVALID; ++n) {
deba@327:         if (graph.u(e) == n) s = true;
deba@327:         if (graph.v(e) == n) t = true;
deba@327:       }
deba@327:       if (s == true && t == true) {
deba@327:         rw += mwm.blossomValue(i);
deba@327:       }
deba@327:     }
deba@327:     rw -= weight[e] * mwm.dualScale;
deba@327: 
deba@327:     check(rw >= 0, "Negative reduced weight");
deba@327:     check(rw == 0 || !mwm.matching(e),
deba@327:           "Non-zero reduced weight on matching edge");
deba@327:   }
deba@327: 
deba@327:   int pv = 0;
deba@327:   for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327:     if (mwm.matching(n) != INVALID) {
deba@327:       check(mwm.nodeValue(n) >= 0, "Invalid node value");
deba@327:       pv += weight[mwm.matching(n)];
deba@327:       SmartGraph::Node o = graph.target(mwm.matching(n));
deba@327:       check(mwm.mate(n) == o, "Invalid matching");
deba@327:       check(mwm.matching(n) == graph.oppositeArc(mwm.matching(o)),
deba@327:             "Invalid matching");
deba@327:     } else {
deba@327:       check(mwm.mate(n) == INVALID, "Invalid matching");
deba@327:       check(mwm.nodeValue(n) == 0, "Invalid matching");
deba@327:     }
deba@327:   }
deba@327: 
deba@327:   int dv = 0;
deba@327:   for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327:     dv += mwm.nodeValue(n);
deba@327:   }
deba@327: 
deba@327:   for (int i = 0; i < mwm.blossomNum(); ++i) {
deba@327:     check(mwm.blossomValue(i) >= 0, "Invalid blossom value");
deba@327:     check(mwm.blossomSize(i) % 2 == 1, "Even blossom size");
deba@327:     dv += mwm.blossomValue(i) * ((mwm.blossomSize(i) - 1) / 2);
deba@327:   }
deba@327: 
deba@327:   check(pv * mwm.dualScale == dv * 2, "Wrong duality");
deba@327: 
deba@327:   return;
deba@327: }
deba@327: 
deba@327: void checkWeightedPerfectMatching(const SmartGraph& graph,
deba@327:                           const SmartGraph::EdgeMap<int>& weight,
deba@327:                           const MaxWeightedPerfectMatching<SmartGraph>& mwpm) {
deba@327:   for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
deba@327:     if (graph.u(e) == graph.v(e)) continue;
deba@327:     int rw = mwpm.nodeValue(graph.u(e)) + mwpm.nodeValue(graph.v(e));
deba@327: 
deba@327:     for (int i = 0; i < mwpm.blossomNum(); ++i) {
deba@327:       bool s = false, t = false;
deba@327:       for (MaxWeightedPerfectMatching<SmartGraph>::BlossomIt n(mwpm, i);
deba@327:            n != INVALID; ++n) {
deba@327:         if (graph.u(e) == n) s = true;
deba@327:         if (graph.v(e) == n) t = true;
deba@327:       }
deba@327:       if (s == true && t == true) {
deba@327:         rw += mwpm.blossomValue(i);
deba@327:       }
deba@327:     }
deba@327:     rw -= weight[e] * mwpm.dualScale;
deba@327: 
deba@327:     check(rw >= 0, "Negative reduced weight");
deba@327:     check(rw == 0 || !mwpm.matching(e),
deba@327:           "Non-zero reduced weight on matching edge");
deba@327:   }
deba@327: 
deba@327:   int pv = 0;
deba@327:   for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327:     check(mwpm.matching(n) != INVALID, "Non perfect");
deba@327:     pv += weight[mwpm.matching(n)];
deba@327:     SmartGraph::Node o = graph.target(mwpm.matching(n));
deba@327:     check(mwpm.mate(n) == o, "Invalid matching");
deba@327:     check(mwpm.matching(n) == graph.oppositeArc(mwpm.matching(o)),
deba@327:           "Invalid matching");
deba@327:   }
deba@327: 
deba@327:   int dv = 0;
deba@327:   for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327:     dv += mwpm.nodeValue(n);
deba@327:   }
deba@327: 
deba@327:   for (int i = 0; i < mwpm.blossomNum(); ++i) {
deba@327:     check(mwpm.blossomValue(i) >= 0, "Invalid blossom value");
deba@327:     check(mwpm.blossomSize(i) % 2 == 1, "Even blossom size");
deba@327:     dv += mwpm.blossomValue(i) * ((mwpm.blossomSize(i) - 1) / 2);
deba@327:   }
deba@327: 
deba@327:   check(pv * mwpm.dualScale == dv * 2, "Wrong duality");
deba@327: 
deba@327:   return;
deba@327: }
deba@327: 
deba@327: 
deba@326: int main() {
deba@326: 
deba@327:   for (int i = 0; i < lgfn; ++i) {
deba@327:     SmartGraph graph;
deba@327:     SmartGraph::EdgeMap<int> weight(graph);
deba@326: 
deba@327:     istringstream lgfs(lgf[i]);
deba@327:     graphReader(graph, lgfs).
deba@327:       edgeMap("weight", weight).run();
deba@326: 
deba@327:     MaxMatching<SmartGraph> mm(graph);
deba@327:     mm.run();
deba@327:     checkMatching(graph, mm);
deba@326: 
deba@327:     MaxWeightedMatching<SmartGraph> mwm(graph, weight);
deba@327:     mwm.run();
deba@327:     checkWeightedMatching(graph, weight, mwm);
deba@326: 
deba@327:     MaxWeightedPerfectMatching<SmartGraph> mwpm(graph, weight);
deba@327:     bool perfect = mwpm.run();
deba@326: 
deba@327:     check(perfect == (mm.matchingSize() * 2 == countNodes(graph)),
deba@327:           "Perfect matching found");
deba@326: 
deba@327:     if (perfect) {
deba@327:       checkWeightedPerfectMatching(graph, weight, mwpm);
deba@326:     }
deba@326:   }
deba@326: 
deba@326:   return 0;
deba@326: }