test/max_matching_test.cc
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 15 Apr 2009 12:01:14 +0200
changeset 590 b61354458b59
parent 440 88ed40ad0d4f
child 593 7ac52d6a268e
permissions -rw-r--r--
Imporvements for the matching algorithms (#264)
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@440
     5
 * Copyright (C) 2003-2009
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
deba@327
    25
#include <lemon/max_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();
kpeter@590
   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@590
   141
  const_mat_test.mate(n);
kpeter@590
   142
kpeter@590
   143
  MaxMatching<Graph>::Status stat = 
kpeter@590
   144
    const_mat_test.decomposition(n);
kpeter@590
   145
  const_mat_test.barrier(n);
kpeter@590
   146
  
kpeter@590
   147
  ignore_unused_variable_warning(stat);
kpeter@590
   148
}
kpeter@590
   149
kpeter@590
   150
void checkMaxWeightedMatchingCompile()
kpeter@590
   151
{
kpeter@590
   152
  typedef concepts::Graph Graph;
kpeter@590
   153
  typedef Graph::Node Node;
kpeter@590
   154
  typedef Graph::Edge Edge;
kpeter@590
   155
  typedef Graph::EdgeMap<int> WeightMap;
kpeter@590
   156
kpeter@590
   157
  Graph g;
kpeter@590
   158
  Node n;
kpeter@590
   159
  Edge e;
kpeter@590
   160
  WeightMap w(g);
kpeter@590
   161
kpeter@590
   162
  MaxWeightedMatching<Graph> mat_test(g, w);
kpeter@590
   163
  const MaxWeightedMatching<Graph>&
kpeter@590
   164
    const_mat_test = mat_test;
kpeter@590
   165
kpeter@590
   166
  mat_test.init();
kpeter@590
   167
  mat_test.start();
kpeter@590
   168
  mat_test.run();
kpeter@590
   169
  
kpeter@590
   170
  const_mat_test.matchingValue();
kpeter@590
   171
  const_mat_test.matchingSize();
kpeter@590
   172
  const_mat_test.matching(e);
kpeter@590
   173
  const_mat_test.matching(n);
kpeter@590
   174
  const_mat_test.mate(n);
kpeter@590
   175
  
kpeter@590
   176
  int k = 0;
kpeter@590
   177
  const_mat_test.dualValue();
kpeter@590
   178
  const_mat_test.nodeValue(n);
kpeter@590
   179
  const_mat_test.blossomNum();
kpeter@590
   180
  const_mat_test.blossomSize(k);
kpeter@590
   181
  const_mat_test.blossomValue(k);
kpeter@590
   182
}
kpeter@590
   183
kpeter@590
   184
void checkMaxWeightedPerfectMatchingCompile()
kpeter@590
   185
{
kpeter@590
   186
  typedef concepts::Graph Graph;
kpeter@590
   187
  typedef Graph::Node Node;
kpeter@590
   188
  typedef Graph::Edge Edge;
kpeter@590
   189
  typedef Graph::EdgeMap<int> WeightMap;
kpeter@590
   190
kpeter@590
   191
  Graph g;
kpeter@590
   192
  Node n;
kpeter@590
   193
  Edge e;
kpeter@590
   194
  WeightMap w(g);
kpeter@590
   195
kpeter@590
   196
  MaxWeightedPerfectMatching<Graph> mat_test(g, w);
kpeter@590
   197
  const MaxWeightedPerfectMatching<Graph>&
kpeter@590
   198
    const_mat_test = mat_test;
kpeter@590
   199
kpeter@590
   200
  mat_test.init();
kpeter@590
   201
  mat_test.start();
kpeter@590
   202
  mat_test.run();
kpeter@590
   203
  
kpeter@590
   204
  const_mat_test.matchingValue();
kpeter@590
   205
  const_mat_test.matching(e);
kpeter@590
   206
  const_mat_test.matching(n);
kpeter@590
   207
  const_mat_test.mate(n);
kpeter@590
   208
  
kpeter@590
   209
  int k = 0;
kpeter@590
   210
  const_mat_test.dualValue();
kpeter@590
   211
  const_mat_test.nodeValue(n);
kpeter@590
   212
  const_mat_test.blossomNum();
kpeter@590
   213
  const_mat_test.blossomSize(k);
kpeter@590
   214
  const_mat_test.blossomValue(k);
kpeter@590
   215
}
kpeter@590
   216
deba@327
   217
void checkMatching(const SmartGraph& graph,
deba@327
   218
                   const MaxMatching<SmartGraph>& mm) {
deba@327
   219
  int num = 0;
deba@327
   220
deba@327
   221
  IntNodeMap comp_index(graph);
deba@327
   222
  UnionFind<IntNodeMap> comp(comp_index);
deba@327
   223
deba@327
   224
  int barrier_num = 0;
deba@327
   225
deba@327
   226
  for (NodeIt n(graph); n != INVALID; ++n) {
deba@327
   227
    check(mm.decomposition(n) == MaxMatching<SmartGraph>::EVEN ||
deba@327
   228
          mm.matching(n) != INVALID, "Wrong Gallai-Edmonds decomposition");
deba@327
   229
    if (mm.decomposition(n) == MaxMatching<SmartGraph>::ODD) {
deba@327
   230
      ++barrier_num;
deba@327
   231
    } else {
deba@327
   232
      comp.insert(n);
deba@327
   233
    }
deba@327
   234
  }
deba@327
   235
deba@327
   236
  for (EdgeIt e(graph); e != INVALID; ++e) {
deba@327
   237
    if (mm.matching(e)) {
deba@327
   238
      check(e == mm.matching(graph.u(e)), "Wrong matching");
deba@327
   239
      check(e == mm.matching(graph.v(e)), "Wrong matching");
deba@327
   240
      ++num;
deba@327
   241
    }
deba@327
   242
    check(mm.decomposition(graph.u(e)) != MaxMatching<SmartGraph>::EVEN ||
deba@327
   243
          mm.decomposition(graph.v(e)) != MaxMatching<SmartGraph>::MATCHED,
deba@327
   244
          "Wrong Gallai-Edmonds decomposition");
deba@327
   245
deba@327
   246
    check(mm.decomposition(graph.v(e)) != MaxMatching<SmartGraph>::EVEN ||
deba@327
   247
          mm.decomposition(graph.u(e)) != MaxMatching<SmartGraph>::MATCHED,
deba@327
   248
          "Wrong Gallai-Edmonds decomposition");
deba@327
   249
deba@327
   250
    if (mm.decomposition(graph.u(e)) != MaxMatching<SmartGraph>::ODD &&
deba@327
   251
        mm.decomposition(graph.v(e)) != MaxMatching<SmartGraph>::ODD) {
deba@327
   252
      comp.join(graph.u(e), graph.v(e));
deba@327
   253
    }
deba@327
   254
  }
deba@327
   255
deba@327
   256
  std::set<int> comp_root;
deba@327
   257
  int odd_comp_num = 0;
deba@327
   258
  for (NodeIt n(graph); n != INVALID; ++n) {
deba@327
   259
    if (mm.decomposition(n) != MaxMatching<SmartGraph>::ODD) {
deba@327
   260
      int root = comp.find(n);
deba@327
   261
      if (comp_root.find(root) == comp_root.end()) {
deba@327
   262
        comp_root.insert(root);
deba@327
   263
        if (comp.size(n) % 2 == 1) {
deba@327
   264
          ++odd_comp_num;
deba@327
   265
        }
deba@327
   266
      }
deba@327
   267
    }
deba@327
   268
  }
deba@327
   269
deba@327
   270
  check(mm.matchingSize() == num, "Wrong matching");
deba@327
   271
  check(2 * num == countNodes(graph) - (odd_comp_num - barrier_num),
deba@327
   272
         "Wrong matching");
deba@327
   273
  return;
deba@327
   274
}
deba@327
   275
deba@327
   276
void checkWeightedMatching(const SmartGraph& graph,
deba@327
   277
                   const SmartGraph::EdgeMap<int>& weight,
deba@327
   278
                   const MaxWeightedMatching<SmartGraph>& mwm) {
deba@327
   279
  for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
deba@327
   280
    if (graph.u(e) == graph.v(e)) continue;
deba@327
   281
    int rw = mwm.nodeValue(graph.u(e)) + mwm.nodeValue(graph.v(e));
deba@327
   282
deba@327
   283
    for (int i = 0; i < mwm.blossomNum(); ++i) {
deba@327
   284
      bool s = false, t = false;
deba@327
   285
      for (MaxWeightedMatching<SmartGraph>::BlossomIt n(mwm, i);
deba@327
   286
           n != INVALID; ++n) {
deba@327
   287
        if (graph.u(e) == n) s = true;
deba@327
   288
        if (graph.v(e) == n) t = true;
deba@327
   289
      }
deba@327
   290
      if (s == true && t == true) {
deba@327
   291
        rw += mwm.blossomValue(i);
deba@327
   292
      }
deba@327
   293
    }
deba@327
   294
    rw -= weight[e] * mwm.dualScale;
deba@327
   295
deba@327
   296
    check(rw >= 0, "Negative reduced weight");
deba@327
   297
    check(rw == 0 || !mwm.matching(e),
deba@327
   298
          "Non-zero reduced weight on matching edge");
deba@327
   299
  }
deba@327
   300
deba@327
   301
  int pv = 0;
deba@327
   302
  for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327
   303
    if (mwm.matching(n) != INVALID) {
deba@327
   304
      check(mwm.nodeValue(n) >= 0, "Invalid node value");
deba@327
   305
      pv += weight[mwm.matching(n)];
deba@327
   306
      SmartGraph::Node o = graph.target(mwm.matching(n));
deba@327
   307
      check(mwm.mate(n) == o, "Invalid matching");
deba@327
   308
      check(mwm.matching(n) == graph.oppositeArc(mwm.matching(o)),
deba@327
   309
            "Invalid matching");
deba@327
   310
    } else {
deba@327
   311
      check(mwm.mate(n) == INVALID, "Invalid matching");
deba@327
   312
      check(mwm.nodeValue(n) == 0, "Invalid matching");
deba@327
   313
    }
deba@327
   314
  }
deba@327
   315
deba@327
   316
  int dv = 0;
deba@327
   317
  for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327
   318
    dv += mwm.nodeValue(n);
deba@327
   319
  }
deba@327
   320
deba@327
   321
  for (int i = 0; i < mwm.blossomNum(); ++i) {
deba@327
   322
    check(mwm.blossomValue(i) >= 0, "Invalid blossom value");
deba@327
   323
    check(mwm.blossomSize(i) % 2 == 1, "Even blossom size");
deba@327
   324
    dv += mwm.blossomValue(i) * ((mwm.blossomSize(i) - 1) / 2);
deba@327
   325
  }
deba@327
   326
deba@327
   327
  check(pv * mwm.dualScale == dv * 2, "Wrong duality");
deba@327
   328
deba@327
   329
  return;
deba@327
   330
}
deba@327
   331
deba@327
   332
void checkWeightedPerfectMatching(const SmartGraph& graph,
deba@327
   333
                          const SmartGraph::EdgeMap<int>& weight,
deba@327
   334
                          const MaxWeightedPerfectMatching<SmartGraph>& mwpm) {
deba@327
   335
  for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {
deba@327
   336
    if (graph.u(e) == graph.v(e)) continue;
deba@327
   337
    int rw = mwpm.nodeValue(graph.u(e)) + mwpm.nodeValue(graph.v(e));
deba@327
   338
deba@327
   339
    for (int i = 0; i < mwpm.blossomNum(); ++i) {
deba@327
   340
      bool s = false, t = false;
deba@327
   341
      for (MaxWeightedPerfectMatching<SmartGraph>::BlossomIt n(mwpm, i);
deba@327
   342
           n != INVALID; ++n) {
deba@327
   343
        if (graph.u(e) == n) s = true;
deba@327
   344
        if (graph.v(e) == n) t = true;
deba@327
   345
      }
deba@327
   346
      if (s == true && t == true) {
deba@327
   347
        rw += mwpm.blossomValue(i);
deba@327
   348
      }
deba@327
   349
    }
deba@327
   350
    rw -= weight[e] * mwpm.dualScale;
deba@327
   351
deba@327
   352
    check(rw >= 0, "Negative reduced weight");
deba@327
   353
    check(rw == 0 || !mwpm.matching(e),
deba@327
   354
          "Non-zero reduced weight on matching edge");
deba@327
   355
  }
deba@327
   356
deba@327
   357
  int pv = 0;
deba@327
   358
  for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327
   359
    check(mwpm.matching(n) != INVALID, "Non perfect");
deba@327
   360
    pv += weight[mwpm.matching(n)];
deba@327
   361
    SmartGraph::Node o = graph.target(mwpm.matching(n));
deba@327
   362
    check(mwpm.mate(n) == o, "Invalid matching");
deba@327
   363
    check(mwpm.matching(n) == graph.oppositeArc(mwpm.matching(o)),
deba@327
   364
          "Invalid matching");
deba@327
   365
  }
deba@327
   366
deba@327
   367
  int dv = 0;
deba@327
   368
  for (SmartGraph::NodeIt n(graph); n != INVALID; ++n) {
deba@327
   369
    dv += mwpm.nodeValue(n);
deba@327
   370
  }
deba@327
   371
deba@327
   372
  for (int i = 0; i < mwpm.blossomNum(); ++i) {
deba@327
   373
    check(mwpm.blossomValue(i) >= 0, "Invalid blossom value");
deba@327
   374
    check(mwpm.blossomSize(i) % 2 == 1, "Even blossom size");
deba@327
   375
    dv += mwpm.blossomValue(i) * ((mwpm.blossomSize(i) - 1) / 2);
deba@327
   376
  }
deba@327
   377
deba@327
   378
  check(pv * mwpm.dualScale == dv * 2, "Wrong duality");
deba@327
   379
deba@327
   380
  return;
deba@327
   381
}
deba@327
   382
deba@327
   383
deba@326
   384
int main() {
deba@326
   385
deba@327
   386
  for (int i = 0; i < lgfn; ++i) {
deba@327
   387
    SmartGraph graph;
deba@327
   388
    SmartGraph::EdgeMap<int> weight(graph);
deba@326
   389
deba@327
   390
    istringstream lgfs(lgf[i]);
deba@327
   391
    graphReader(graph, lgfs).
deba@327
   392
      edgeMap("weight", weight).run();
deba@326
   393
deba@327
   394
    MaxMatching<SmartGraph> mm(graph);
deba@327
   395
    mm.run();
deba@327
   396
    checkMatching(graph, mm);
deba@326
   397
deba@327
   398
    MaxWeightedMatching<SmartGraph> mwm(graph, weight);
deba@327
   399
    mwm.run();
deba@327
   400
    checkWeightedMatching(graph, weight, mwm);
deba@326
   401
deba@327
   402
    MaxWeightedPerfectMatching<SmartGraph> mwpm(graph, weight);
deba@327
   403
    bool perfect = mwpm.run();
deba@326
   404
deba@327
   405
    check(perfect == (mm.matchingSize() * 2 == countNodes(graph)),
deba@327
   406
          "Perfect matching found");
deba@326
   407
deba@327
   408
    if (perfect) {
deba@327
   409
      checkWeightedPerfectMatching(graph, weight, mwpm);
deba@326
   410
    }
deba@326
   411
  }
deba@326
   412
deba@326
   413
  return 0;
deba@326
   414
}