test/graph_test.cc
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 06 Nov 2008 15:16:37 +0100
changeset 377 a12eef1f82b2
parent 368 99f1bdf8f7db
child 385 7b6466ed488a
permissions -rw-r--r--
Rework hypercube graph implementation to be undirected (#57)
alpar@209
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
deba@57
     2
 *
alpar@209
     3
 * This file is a part of LEMON, a generic C++ optimization library.
deba@57
     4
 *
alpar@107
     5
 * Copyright (C) 2003-2008
deba@57
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
deba@57
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
deba@57
     8
 *
deba@57
     9
 * Permission to use, modify and distribute this software is granted
deba@57
    10
 * provided that this copyright notice appears in all copies. For
deba@57
    11
 * precise terms see the accompanying LICENSE file.
deba@57
    12
 *
deba@57
    13
 * This software is provided "AS IS" with no warranty of any kind,
deba@57
    14
 * express or implied, and with no claim as to its suitability for any
deba@57
    15
 * purpose.
deba@57
    16
 *
deba@57
    17
 */
deba@57
    18
deba@57
    19
#include <lemon/concepts/graph.h>
deba@57
    20
#include <lemon/list_graph.h>
deba@109
    21
#include <lemon/smart_graph.h>
deba@365
    22
#include <lemon/full_graph.h>
kpeter@346
    23
#include <lemon/grid_graph.h>
kpeter@377
    24
#include <lemon/hypercube_graph.h>
deba@57
    25
deba@57
    26
#include "test_tools.h"
kpeter@171
    27
#include "graph_test.h"
deba@57
    28
deba@57
    29
using namespace lemon;
deba@57
    30
using namespace lemon::concepts;
deba@57
    31
deba@228
    32
template <class Graph>
deba@228
    33
void checkGraph() {
deba@228
    34
  TEMPLATE_GRAPH_TYPEDEFS(Graph);
deba@228
    35
deba@228
    36
  Graph G;
deba@228
    37
  checkGraphNodeList(G, 0);
deba@228
    38
  checkGraphEdgeList(G, 0);
deba@228
    39
deba@228
    40
  Node
deba@228
    41
    n1 = G.addNode(),
deba@228
    42
    n2 = G.addNode(),
deba@228
    43
    n3 = G.addNode();
deba@228
    44
  checkGraphNodeList(G, 3);
deba@228
    45
  checkGraphEdgeList(G, 0);
deba@228
    46
deba@228
    47
  Edge e1 = G.addEdge(n1, n2);
deba@228
    48
  check((G.u(e1) == n1 && G.v(e1) == n2) || (G.u(e1) == n2 && G.v(e1) == n1),
deba@228
    49
        "Wrong edge");
deba@228
    50
  checkGraphNodeList(G, 3);
deba@228
    51
  checkGraphArcList(G, 2);
deba@228
    52
  checkGraphEdgeList(G, 1);
deba@228
    53
deba@228
    54
  checkGraphOutArcList(G, n1, 1);
deba@228
    55
  checkGraphOutArcList(G, n2, 1);
deba@228
    56
  checkGraphOutArcList(G, n3, 0);
deba@228
    57
deba@228
    58
  checkGraphInArcList(G, n1, 1);
deba@228
    59
  checkGraphInArcList(G, n2, 1);
deba@228
    60
  checkGraphInArcList(G, n3, 0);
deba@228
    61
deba@228
    62
  checkGraphIncEdgeList(G, n1, 1);
deba@228
    63
  checkGraphIncEdgeList(G, n2, 1);
deba@228
    64
  checkGraphIncEdgeList(G, n3, 0);
deba@228
    65
deba@228
    66
  checkGraphConArcList(G, 2);
deba@228
    67
  checkGraphConEdgeList(G, 1);
deba@228
    68
deba@228
    69
  Edge e2 = G.addEdge(n2, n1), e3 = G.addEdge(n2, n3);
deba@228
    70
  checkGraphNodeList(G, 3);
deba@228
    71
  checkGraphArcList(G, 6);
deba@228
    72
  checkGraphEdgeList(G, 3);
deba@228
    73
deba@228
    74
  checkGraphOutArcList(G, n1, 2);
deba@228
    75
  checkGraphOutArcList(G, n2, 3);
deba@228
    76
  checkGraphOutArcList(G, n3, 1);
deba@228
    77
deba@228
    78
  checkGraphInArcList(G, n1, 2);
deba@228
    79
  checkGraphInArcList(G, n2, 3);
deba@228
    80
  checkGraphInArcList(G, n3, 1);
deba@228
    81
deba@228
    82
  checkGraphIncEdgeList(G, n1, 2);
deba@228
    83
  checkGraphIncEdgeList(G, n2, 3);
deba@228
    84
  checkGraphIncEdgeList(G, n3, 1);
deba@228
    85
deba@228
    86
  checkGraphConArcList(G, 6);
deba@228
    87
  checkGraphConEdgeList(G, 3);
deba@228
    88
deba@228
    89
  checkArcDirections(G);
deba@228
    90
deba@228
    91
  checkNodeIds(G);
deba@228
    92
  checkArcIds(G);
deba@228
    93
  checkEdgeIds(G);
deba@228
    94
  checkGraphNodeMap(G);
deba@228
    95
  checkGraphArcMap(G);
deba@228
    96
  checkGraphEdgeMap(G);
deba@228
    97
}
deba@228
    98
deba@365
    99
void checkFullGraph(int num) {
deba@365
   100
  typedef FullGraph Graph;
deba@365
   101
  GRAPH_TYPEDEFS(Graph);
deba@365
   102
deba@365
   103
  Graph G(num);
deba@365
   104
  checkGraphNodeList(G, num);
deba@365
   105
  checkGraphEdgeList(G, num * (num - 1) / 2);
deba@365
   106
deba@365
   107
  for (NodeIt n(G); n != INVALID; ++n) {
kpeter@377
   108
    checkGraphOutArcList(G, n, num - 1);
kpeter@377
   109
    checkGraphInArcList(G, n, num - 1);
kpeter@377
   110
    checkGraphIncEdgeList(G, n, num - 1);
deba@365
   111
  }
deba@365
   112
deba@365
   113
  checkGraphConArcList(G, num * (num - 1));
deba@365
   114
  checkGraphConEdgeList(G, num * (num - 1) / 2);
deba@365
   115
deba@365
   116
  checkArcDirections(G);
deba@365
   117
deba@365
   118
  checkNodeIds(G);
deba@365
   119
  checkArcIds(G);
deba@365
   120
  checkEdgeIds(G);
deba@365
   121
  checkGraphNodeMap(G);
deba@365
   122
  checkGraphArcMap(G);
deba@365
   123
  checkGraphEdgeMap(G);
deba@365
   124
kpeter@377
   125
deba@365
   126
  for (int i = 0; i < G.nodeNum(); ++i) {
deba@365
   127
    check(G.index(G(i)) == i, "Wrong index");
deba@365
   128
  }
deba@365
   129
deba@365
   130
  for (NodeIt u(G); u != INVALID; ++u) {
deba@365
   131
    for (NodeIt v(G); v != INVALID; ++v) {
deba@365
   132
      Edge e = G.edge(u, v);
deba@365
   133
      Arc a = G.arc(u, v);
deba@365
   134
      if (u == v) {
deba@365
   135
        check(e == INVALID, "Wrong edge lookup");
deba@365
   136
        check(a == INVALID, "Wrong arc lookup");
deba@365
   137
      } else {
deba@365
   138
        check((G.u(e) == u && G.v(e) == v) ||
deba@365
   139
              (G.u(e) == v && G.v(e) == u), "Wrong edge lookup");
deba@365
   140
        check(G.source(a) == u && G.target(a) == v, "Wrong arc lookup");
deba@365
   141
      }
deba@365
   142
    }
deba@365
   143
  }
deba@365
   144
}
deba@365
   145
deba@228
   146
void checkConcepts() {
kpeter@171
   147
  { // Checking graph components
deba@57
   148
    checkConcept<BaseGraphComponent, BaseGraphComponent >();
deba@57
   149
alpar@209
   150
    checkConcept<IDableGraphComponent<>,
deba@57
   151
      IDableGraphComponent<> >();
deba@57
   152
alpar@209
   153
    checkConcept<IterableGraphComponent<>,
deba@57
   154
      IterableGraphComponent<> >();
deba@57
   155
alpar@209
   156
    checkConcept<MappableGraphComponent<>,
deba@57
   157
      MappableGraphComponent<> >();
deba@57
   158
  }
kpeter@171
   159
  { // Checking skeleton graph
kpeter@171
   160
    checkConcept<Graph, Graph>();
deba@57
   161
  }
kpeter@171
   162
  { // Checking ListGraph
kpeter@171
   163
    checkConcept<Graph, ListGraph>();
kpeter@171
   164
    checkConcept<AlterableGraphComponent<>, ListGraph>();
kpeter@171
   165
    checkConcept<ExtendableGraphComponent<>, ListGraph>();
kpeter@171
   166
    checkConcept<ClearableGraphComponent<>, ListGraph>();
kpeter@171
   167
    checkConcept<ErasableGraphComponent<>, ListGraph>();
kpeter@171
   168
  }
kpeter@171
   169
  { // Checking SmartGraph
kpeter@171
   170
    checkConcept<Graph, SmartGraph>();
kpeter@171
   171
    checkConcept<AlterableGraphComponent<>, SmartGraph>();
kpeter@171
   172
    checkConcept<ExtendableGraphComponent<>, SmartGraph>();
kpeter@171
   173
    checkConcept<ClearableGraphComponent<>, SmartGraph>();
kpeter@171
   174
  }
deba@365
   175
  { // Checking FullGraph
deba@365
   176
    checkConcept<Graph, FullGraph>();
deba@365
   177
  }
kpeter@346
   178
  { // Checking GridGraph
kpeter@346
   179
    checkConcept<Graph, GridGraph>();
kpeter@346
   180
  }
kpeter@377
   181
  { // Checking HypercubeGraph
kpeter@377
   182
    checkConcept<Graph, HypercubeGraph>();
kpeter@377
   183
  }
deba@57
   184
}
deba@57
   185
deba@57
   186
template <typename Graph>
deba@228
   187
void checkGraphValidity() {
deba@149
   188
  TEMPLATE_GRAPH_TYPEDEFS(Graph);
deba@57
   189
  Graph g;
deba@57
   190
deba@57
   191
  Node
deba@57
   192
    n1 = g.addNode(),
deba@57
   193
    n2 = g.addNode(),
deba@57
   194
    n3 = g.addNode();
deba@57
   195
deba@57
   196
  Edge
deba@57
   197
    e1 = g.addEdge(n1, n2),
deba@57
   198
    e2 = g.addEdge(n2, n3);
deba@57
   199
kpeter@171
   200
  check(g.valid(n1), "Wrong validity check");
kpeter@171
   201
  check(g.valid(e1), "Wrong validity check");
kpeter@171
   202
  check(g.valid(g.direct(e1, true)), "Wrong validity check");
kpeter@171
   203
kpeter@171
   204
  check(!g.valid(g.nodeFromId(-1)), "Wrong validity check");
kpeter@171
   205
  check(!g.valid(g.edgeFromId(-1)), "Wrong validity check");
kpeter@171
   206
  check(!g.valid(g.arcFromId(-1)), "Wrong validity check");
deba@57
   207
}
deba@57
   208
deba@149
   209
template <typename Graph>
deba@228
   210
void checkGraphValidityErase() {
deba@149
   211
  TEMPLATE_GRAPH_TYPEDEFS(Graph);
deba@149
   212
  Graph g;
deba@149
   213
deba@149
   214
  Node
deba@149
   215
    n1 = g.addNode(),
deba@149
   216
    n2 = g.addNode(),
deba@149
   217
    n3 = g.addNode();
deba@149
   218
deba@149
   219
  Edge
deba@149
   220
    e1 = g.addEdge(n1, n2),
deba@149
   221
    e2 = g.addEdge(n2, n3);
deba@149
   222
kpeter@171
   223
  check(g.valid(n1), "Wrong validity check");
kpeter@171
   224
  check(g.valid(e1), "Wrong validity check");
kpeter@171
   225
  check(g.valid(g.direct(e1, true)), "Wrong validity check");
deba@149
   226
deba@149
   227
  g.erase(n1);
deba@149
   228
kpeter@171
   229
  check(!g.valid(n1), "Wrong validity check");
kpeter@171
   230
  check(g.valid(n2), "Wrong validity check");
kpeter@171
   231
  check(g.valid(n3), "Wrong validity check");
kpeter@171
   232
  check(!g.valid(e1), "Wrong validity check");
kpeter@171
   233
  check(g.valid(e2), "Wrong validity check");
deba@149
   234
kpeter@171
   235
  check(!g.valid(g.nodeFromId(-1)), "Wrong validity check");
kpeter@171
   236
  check(!g.valid(g.edgeFromId(-1)), "Wrong validity check");
kpeter@171
   237
  check(!g.valid(g.arcFromId(-1)), "Wrong validity check");
deba@149
   238
}
deba@149
   239
deba@347
   240
void checkGridGraph(int width, int height) {
deba@347
   241
  typedef GridGraph Graph;
deba@347
   242
  GRAPH_TYPEDEFS(Graph);
deba@347
   243
  Graph G(width, height);
deba@57
   244
kpeter@348
   245
  check(G.width() == width, "Wrong column number");
kpeter@348
   246
  check(G.height() == height, "Wrong row number");
alpar@209
   247
deba@347
   248
  for (int i = 0; i < width; ++i) {
deba@347
   249
    for (int j = 0; j < height; ++j) {
deba@347
   250
      check(G.col(G(i, j)) == i, "Wrong column");
deba@347
   251
      check(G.row(G(i, j)) == j, "Wrong row");
deba@347
   252
      check(G.pos(G(i, j)).x == i, "Wrong column");
deba@347
   253
      check(G.pos(G(i, j)).y == j, "Wrong row");
kpeter@346
   254
    }
kpeter@346
   255
  }
deba@57
   256
deba@347
   257
  for (int j = 0; j < height; ++j) {
deba@347
   258
    for (int i = 0; i < width - 1; ++i) {
deba@347
   259
      check(G.source(G.right(G(i, j))) == G(i, j), "Wrong right");
deba@347
   260
      check(G.target(G.right(G(i, j))) == G(i + 1, j), "Wrong right");
kpeter@346
   261
    }
deba@347
   262
    check(G.right(G(width - 1, j)) == INVALID, "Wrong right");
kpeter@346
   263
  }
deba@57
   264
deba@347
   265
  for (int j = 0; j < height; ++j) {
deba@347
   266
    for (int i = 1; i < width; ++i) {
deba@347
   267
      check(G.source(G.left(G(i, j))) == G(i, j), "Wrong left");
deba@347
   268
      check(G.target(G.left(G(i, j))) == G(i - 1, j), "Wrong left");
kpeter@346
   269
    }
deba@347
   270
    check(G.left(G(0, j)) == INVALID, "Wrong left");
kpeter@346
   271
  }
deba@57
   272
deba@347
   273
  for (int i = 0; i < width; ++i) {
deba@347
   274
    for (int j = 0; j < height - 1; ++j) {
deba@347
   275
      check(G.source(G.up(G(i, j))) == G(i, j), "Wrong up");
deba@347
   276
      check(G.target(G.up(G(i, j))) == G(i, j + 1), "Wrong up");
kpeter@346
   277
    }
deba@347
   278
    check(G.up(G(i, height - 1)) == INVALID, "Wrong up");
kpeter@346
   279
  }
deba@228
   280
deba@347
   281
  for (int i = 0; i < width; ++i) {
deba@347
   282
    for (int j = 1; j < height; ++j) {
deba@347
   283
      check(G.source(G.down(G(i, j))) == G(i, j), "Wrong down");
deba@347
   284
      check(G.target(G.down(G(i, j))) == G(i, j - 1), "Wrong down");
kpeter@346
   285
    }
deba@347
   286
    check(G.down(G(i, 0)) == INVALID, "Wrong down");
kpeter@346
   287
  }
kpeter@346
   288
deba@347
   289
  checkGraphNodeList(G, width * height);
deba@347
   290
  checkGraphEdgeList(G, width * (height - 1) + (width - 1) * height);
deba@347
   291
  checkGraphArcList(G, 2 * (width * (height - 1) + (width - 1) * height));
kpeter@346
   292
deba@347
   293
  for (NodeIt n(G); n != INVALID; ++n) {
deba@347
   294
    int nb = 4;
deba@347
   295
    if (G.col(n) == 0) --nb;
deba@347
   296
    if (G.col(n) == width - 1) --nb;
deba@347
   297
    if (G.row(n) == 0) --nb;
deba@347
   298
    if (G.row(n) == height - 1) --nb;
kpeter@346
   299
deba@347
   300
    checkGraphOutArcList(G, n, nb);
deba@347
   301
    checkGraphInArcList(G, n, nb);
deba@347
   302
    checkGraphIncEdgeList(G, n, nb);
deba@347
   303
  }
kpeter@346
   304
deba@347
   305
  checkArcDirections(G);
kpeter@346
   306
deba@347
   307
  checkGraphConArcList(G, 2 * (width * (height - 1) + (width - 1) * height));
deba@347
   308
  checkGraphConEdgeList(G, width * (height - 1) + (width - 1) * height);
kpeter@346
   309
deba@347
   310
  checkNodeIds(G);
deba@347
   311
  checkArcIds(G);
deba@347
   312
  checkEdgeIds(G);
deba@347
   313
  checkGraphNodeMap(G);
deba@347
   314
  checkGraphArcMap(G);
deba@347
   315
  checkGraphEdgeMap(G);
kpeter@346
   316
kpeter@346
   317
}
deba@57
   318
kpeter@377
   319
void checkHypercubeGraph(int dim) {
kpeter@377
   320
  GRAPH_TYPEDEFS(HypercubeGraph);
kpeter@377
   321
kpeter@377
   322
  HypercubeGraph G(dim);
kpeter@377
   323
  checkGraphNodeList(G, 1 << dim);
kpeter@377
   324
  checkGraphEdgeList(G, dim * (1 << dim-1));
kpeter@377
   325
  checkGraphArcList(G, dim * (1 << dim));
kpeter@377
   326
kpeter@377
   327
  Node n = G.nodeFromId(dim);
kpeter@377
   328
kpeter@377
   329
  for (NodeIt n(G); n != INVALID; ++n) {
kpeter@377
   330
    checkGraphIncEdgeList(G, n, dim);
kpeter@377
   331
    for (IncEdgeIt e(G, n); e != INVALID; ++e) {
kpeter@377
   332
      check( (G.u(e) == n &&
kpeter@377
   333
              G.id(G.v(e)) == G.id(n) ^ (1 << G.dimension(e))) ||
kpeter@377
   334
             (G.v(e) == n &&
kpeter@377
   335
              G.id(G.u(e)) == G.id(n) ^ (1 << G.dimension(e))),
kpeter@377
   336
             "Wrong edge or wrong dimension");
kpeter@377
   337
    }
kpeter@377
   338
kpeter@377
   339
    checkGraphOutArcList(G, n, dim);
kpeter@377
   340
    for (OutArcIt a(G, n); a != INVALID; ++a) {
kpeter@377
   341
      check(G.source(a) == n &&
kpeter@377
   342
            G.id(G.target(a)) == G.id(n) ^ (1 << G.dimension(a)),
kpeter@377
   343
            "Wrong arc or wrong dimension");
kpeter@377
   344
    }
kpeter@377
   345
kpeter@377
   346
    checkGraphInArcList(G, n, dim);
kpeter@377
   347
    for (InArcIt a(G, n); a != INVALID; ++a) {
kpeter@377
   348
      check(G.target(a) == n &&
kpeter@377
   349
            G.id(G.source(a)) == G.id(n) ^ (1 << G.dimension(a)),
kpeter@377
   350
            "Wrong arc or wrong dimension");
kpeter@377
   351
    }
kpeter@377
   352
  }
kpeter@377
   353
kpeter@377
   354
  checkGraphConArcList(G, (1 << dim) * dim);
kpeter@377
   355
  checkGraphConEdgeList(G, dim * (1 << dim-1));
kpeter@377
   356
kpeter@377
   357
  checkArcDirections(G);
kpeter@377
   358
kpeter@377
   359
  checkNodeIds(G);
kpeter@377
   360
  checkArcIds(G);
kpeter@377
   361
  checkEdgeIds(G);
kpeter@377
   362
  checkGraphNodeMap(G);
kpeter@377
   363
  checkGraphArcMap(G);
kpeter@377
   364
  checkGraphEdgeMap(G);
kpeter@377
   365
}
kpeter@377
   366
deba@228
   367
void checkGraphs() {
kpeter@171
   368
  { // Checking ListGraph
kpeter@171
   369
    checkGraph<ListGraph>();
deba@228
   370
    checkGraphValidityErase<ListGraph>();
kpeter@171
   371
  }
kpeter@171
   372
  { // Checking SmartGraph
kpeter@171
   373
    checkGraph<SmartGraph>();
deba@228
   374
    checkGraphValidity<SmartGraph>();
kpeter@171
   375
  }
kpeter@377
   376
  { // Checking FullGraph
deba@365
   377
    checkFullGraph(7);
deba@365
   378
    checkFullGraph(8);
deba@365
   379
  }
kpeter@346
   380
  { // Checking GridGraph
deba@347
   381
    checkGridGraph(5, 8);
deba@347
   382
    checkGridGraph(8, 5);
deba@347
   383
    checkGridGraph(5, 5);
deba@347
   384
    checkGridGraph(0, 0);
deba@347
   385
    checkGridGraph(1, 1);
kpeter@346
   386
  }
kpeter@377
   387
  { // Checking HypercubeGraph
kpeter@377
   388
    checkHypercubeGraph(1);
kpeter@377
   389
    checkHypercubeGraph(2);
kpeter@377
   390
    checkHypercubeGraph(3);
kpeter@377
   391
    checkHypercubeGraph(4);
kpeter@377
   392
  }
kpeter@171
   393
}
kpeter@171
   394
deba@57
   395
int main() {
deba@228
   396
  checkConcepts();
deba@228
   397
  checkGraphs();
deba@57
   398
  return 0;
deba@57
   399
}