test/ugraph_test.cc
author deba
Mon, 20 Feb 2006 09:40:07 +0000
changeset 1975 64db671eda28
parent 1909 2d806130e700
child 1979 c2992fd74dad
permissions -rw-r--r--
Second renaming of min cut

Minimum => Min
Work => Aux
alpar@1956
     1
/* -*- C++ -*-
alpar@1956
     2
 *
alpar@1956
     3
 * This file is a part of LEMON, a generic C++ optimization library
alpar@1956
     4
 *
alpar@1956
     5
 * Copyright (C) 2003-2006
alpar@1956
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@1956
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@1956
     8
 *
alpar@1956
     9
 * Permission to use, modify and distribute this software is granted
alpar@1956
    10
 * provided that this copyright notice appears in all copies. For
alpar@1956
    11
 * precise terms see the accompanying LICENSE file.
alpar@1956
    12
 *
alpar@1956
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@1956
    14
 * express or implied, and with no claim as to its suitability for any
alpar@1956
    15
 * purpose.
alpar@1956
    16
 *
alpar@1956
    17
 */
klao@962
    18
klao@1795
    19
#include <lemon/bits/graph_extender.h>
klao@1909
    20
#include <lemon/concept/ugraph.h>
klao@962
    21
#include <lemon/list_graph.h>
klao@962
    22
#include <lemon/smart_graph.h>
klao@962
    23
#include <lemon/full_graph.h>
deba@1680
    24
#include <lemon/grid_graph.h>
klao@962
    25
klao@1053
    26
#include <lemon/graph_utils.h>
klao@1053
    27
klao@962
    28
#include "test_tools.h"
klao@962
    29
klao@962
    30
klao@962
    31
using namespace lemon;
klao@962
    32
using namespace lemon::concept;
klao@962
    33
klao@1053
    34
void check_concepts() {
klao@1909
    35
  typedef UGraphExtender<ListGraphBase> ListUGraphBase;
klao@962
    36
klao@1909
    37
  typedef IterableUGraphExtender<
klao@1909
    38
    AlterableUGraphExtender<ListUGraphBase> > IterableListUGraph;
klao@962
    39
klao@1909
    40
  typedef MappableUGraphExtender<IterableListUGraph>
klao@1909
    41
    MappableListUGraph;
klao@1022
    42
klao@1909
    43
  typedef ErasableUGraphExtender<
klao@1909
    44
    ClearableUGraphExtender<
klao@1909
    45
    ExtendableUGraphExtender<MappableListUGraph> > > Graph;
klao@1022
    46
klao@1909
    47
  checkConcept<BaseIterableUGraphConcept, Graph>();
klao@1909
    48
  checkConcept<IterableUGraphConcept, Graph>();
klao@1909
    49
  checkConcept<MappableUGraphConcept, Graph>();
klao@1022
    50
klao@1909
    51
  checkConcept<UGraph, Graph>();
klao@1909
    52
  checkConcept<ErasableUGraph, Graph>();
klao@962
    53
klao@1909
    54
  checkConcept<UGraph, ListUGraph>();
klao@1909
    55
  checkConcept<ErasableUGraph, ListUGraph>();
klao@1034
    56
klao@1909
    57
  checkConcept<UGraph, SmartUGraph>();
klao@1909
    58
  checkConcept<ExtendableUGraph, SmartUGraph>();
klao@1034
    59
klao@1909
    60
  checkConcept<UGraph, FullUGraph>();
deba@1568
    61
klao@1909
    62
  checkConcept<UGraph, UGraph>();
deba@1680
    63
klao@1909
    64
  checkConcept<UGraph, GridGraph>();
klao@1053
    65
}
klao@1053
    66
klao@1054
    67
template <typename Graph>
klao@1053
    68
void check_item_counts(Graph &g, int n, int e) {
deba@1680
    69
  int nn = 0;
deba@1680
    70
  for (typename Graph::NodeIt it(g); it != INVALID; ++it) {
deba@1680
    71
    ++nn;
deba@1680
    72
  }
deba@1680
    73
deba@1680
    74
  check(nn == n, "Wrong node number.");
deba@1680
    75
  check(countNodes(g) == n, "Wrong node number.");
deba@1680
    76
deba@1680
    77
  int ee = 0;
deba@1680
    78
  for (typename Graph::EdgeIt it(g); it != INVALID; ++it) {
deba@1680
    79
    ++ee;
deba@1680
    80
  }
deba@1680
    81
deba@1680
    82
  check(ee == 2*e, "Wrong edge number.");
deba@1680
    83
  check(countEdges(g) == 2*e, "Wrong edge number.");
deba@1680
    84
deba@1680
    85
  int uee = 0;
klao@1909
    86
  for (typename Graph::UEdgeIt it(g); it != INVALID; ++it) {
deba@1680
    87
    ++uee;
deba@1680
    88
  }
deba@1680
    89
klao@1909
    90
  check(uee == e, "Wrong uedge number.");
klao@1909
    91
  check(countUEdges(g) == e, "Wrong uedge number.");
klao@1053
    92
}
klao@1053
    93
klao@1054
    94
template <typename Graph>
klao@1053
    95
void print_items(Graph &g) {
klao@1054
    96
klao@1054
    97
  typedef typename Graph::NodeIt NodeIt;
klao@1909
    98
  typedef typename Graph::UEdgeIt UEdgeIt;
klao@1054
    99
  typedef typename Graph::EdgeIt EdgeIt;
klao@1054
   100
alpar@1367
   101
  std::cout << "Nodes" << std::endl;
klao@1053
   102
  int i=0;
klao@1053
   103
  for(NodeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
   104
    std::cout << "  " << i << ": " << g.id(it) << std::endl;
klao@1053
   105
  }
klao@1053
   106
klao@1909
   107
  std::cout << "UEdge" << std::endl;
klao@1053
   108
  i=0;
klao@1053
   109
  for(UEdgeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
   110
    std::cout << "  " << i << ": " << g.id(it) 
klao@1053
   111
	 << " (" << g.id(g.source(it)) << ", " << g.id(g.target(it)) 
alpar@1367
   112
	 << ")" << std::endl;
klao@1053
   113
  }
klao@1053
   114
alpar@1367
   115
  std::cout << "Edge" << std::endl;
klao@1053
   116
  i=0;
klao@1053
   117
  for(EdgeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
   118
    std::cout << "  " << i << ": " << g.id(it)
klao@1053
   119
	 << " (" << g.id(g.source(it)) << ", " << g.id(g.target(it)) 
alpar@1367
   120
	 << ")" << std::endl;
klao@1053
   121
  }
klao@1053
   122
klao@1053
   123
}
klao@1053
   124
klao@1054
   125
template <typename Graph>
klao@1054
   126
void check_graph() {
klao@1053
   127
klao@1054
   128
  typedef typename Graph::Node Node;
klao@1909
   129
  typedef typename Graph::UEdge UEdge;
klao@1054
   130
  typedef typename Graph::Edge Edge;
klao@1054
   131
  typedef typename Graph::NodeIt NodeIt;
klao@1909
   132
  typedef typename Graph::UEdgeIt UEdgeIt;
klao@1054
   133
  typedef typename Graph::EdgeIt EdgeIt;
klao@1053
   134
klao@1053
   135
  Graph g;
klao@1053
   136
klao@1053
   137
  check_item_counts(g,0,0);
klao@1053
   138
klao@1053
   139
  Node
klao@1053
   140
    n1 = g.addNode(),
klao@1053
   141
    n2 = g.addNode(),
klao@1053
   142
    n3 = g.addNode();
klao@1053
   143
klao@1053
   144
  UEdge
klao@1053
   145
    e1 = g.addEdge(n1, n2),
klao@1053
   146
    e2 = g.addEdge(n2, n3);
klao@1053
   147
klao@1053
   148
  // print_items(g);
klao@1053
   149
klao@1053
   150
  check_item_counts(g,3,2);
deba@1680
   151
}
klao@1030
   152
deba@1680
   153
void checkGridGraph(const GridGraph& g, int w, int h) {
deba@1680
   154
  check(g.width() == w, "Wrong width");
deba@1680
   155
  check(g.height() == h, "Wrong height");
klao@1054
   156
deba@1680
   157
  for (int i = 0; i < w; ++i) {
deba@1680
   158
    for (int j = 0; j < h; ++j) {
deba@1680
   159
      check(g.col(g(i, j)) == i, "Wrong col");
deba@1680
   160
      check(g.row(g(i, j)) == j, "Wrong row");
deba@1680
   161
    }
deba@1680
   162
  }
deba@1680
   163
  
deba@1680
   164
  for (int i = 0; i < w; ++i) {
deba@1680
   165
    for (int j = 0; j < h - 1; ++j) {
deba@1680
   166
      check(g.source(g.down(g(i, j))) == g(i, j), "Wrong down");
deba@1680
   167
      check(g.target(g.down(g(i, j))) == g(i, j + 1), "Wrong down");
deba@1680
   168
    }
deba@1680
   169
    check(g.down(g(i, h - 1)) == INVALID, "Wrong down");
deba@1680
   170
  }
deba@1680
   171
deba@1680
   172
  for (int i = 0; i < w; ++i) {
deba@1680
   173
    for (int j = 1; j < h; ++j) {
deba@1680
   174
      check(g.source(g.up(g(i, j))) == g(i, j), "Wrong up");
deba@1680
   175
      check(g.target(g.up(g(i, j))) == g(i, j - 1), "Wrong up");
deba@1680
   176
    }
deba@1680
   177
    check(g.up(g(i, 0)) == INVALID, "Wrong up");
deba@1680
   178
  }
deba@1680
   179
deba@1680
   180
  for (int j = 0; j < h; ++j) {
deba@1680
   181
    for (int i = 0; i < w - 1; ++i) {
deba@1680
   182
      check(g.source(g.right(g(i, j))) == g(i, j), "Wrong right");
deba@1680
   183
      check(g.target(g.right(g(i, j))) == g(i + 1, j), "Wrong right");      
deba@1680
   184
    }
deba@1680
   185
    check(g.right(g(w - 1, j)) == INVALID, "Wrong right");    
deba@1680
   186
  }
deba@1680
   187
deba@1680
   188
  for (int j = 0; j < h; ++j) {
deba@1680
   189
    for (int i = 1; i < w; ++i) {
deba@1680
   190
      check(g.source(g.left(g(i, j))) == g(i, j), "Wrong left");
deba@1680
   191
      check(g.target(g.left(g(i, j))) == g(i - 1, j), "Wrong left");      
deba@1680
   192
    }
deba@1680
   193
    check(g.left(g(0, j)) == INVALID, "Wrong left");    
deba@1680
   194
  }
klao@1054
   195
}
klao@1054
   196
klao@1054
   197
int main() {
klao@1054
   198
  check_concepts();
klao@1054
   199
klao@1909
   200
  check_graph<ListUGraph>();
klao@1909
   201
  check_graph<SmartUGraph>();
klao@1054
   202
deba@1568
   203
  {
klao@1909
   204
    FullUGraph g(5);
deba@1568
   205
    check_item_counts(g, 5, 10);
deba@1568
   206
  }
deba@1568
   207
deba@1680
   208
  {
deba@1680
   209
    GridGraph g(5, 6);
deba@1680
   210
    check_item_counts(g, 30, 49);
deba@1680
   211
    checkGridGraph(g, 5, 6);
deba@1680
   212
  }
deba@1680
   213
deba@1680
   214
  std::cout << __FILE__ ": All tests passed.\n";
deba@1680
   215
klao@962
   216
  return 0;
klao@962
   217
}