test/ugraph_test.cc
author deba
Fri, 30 Jun 2006 12:15:45 +0000
changeset 2116 b6a68c15a6a3
parent 2115 4cd528a30ec1
child 2121 09a07a851506
permissions -rw-r--r--
Revert splitted files
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>
deba@2116
    21
#include <lemon/list_graph.h>
deba@2116
    22
#include <lemon/smart_graph.h>
deba@2116
    23
#include <lemon/full_graph.h>
deba@1979
    24
#include <lemon/grid_ugraph.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
  checkConcept<UGraph, ListUGraph>();
klao@1034
    36
klao@1909
    37
  checkConcept<UGraph, SmartUGraph>();
klao@1034
    38
klao@1909
    39
  checkConcept<UGraph, FullUGraph>();
deba@1568
    40
klao@1909
    41
  checkConcept<UGraph, UGraph>();
deba@1680
    42
deba@1979
    43
  checkConcept<UGraph, GridUGraph>();
klao@1053
    44
}
klao@1053
    45
klao@1054
    46
template <typename Graph>
klao@1053
    47
void check_item_counts(Graph &g, int n, int e) {
deba@1680
    48
  int nn = 0;
deba@1680
    49
  for (typename Graph::NodeIt it(g); it != INVALID; ++it) {
deba@1680
    50
    ++nn;
deba@1680
    51
  }
deba@1680
    52
deba@1680
    53
  check(nn == n, "Wrong node number.");
deba@1680
    54
  check(countNodes(g) == n, "Wrong node number.");
deba@1680
    55
deba@1680
    56
  int ee = 0;
deba@1680
    57
  for (typename Graph::EdgeIt it(g); it != INVALID; ++it) {
deba@1680
    58
    ++ee;
deba@1680
    59
  }
deba@1680
    60
deba@1680
    61
  check(ee == 2*e, "Wrong edge number.");
deba@1680
    62
  check(countEdges(g) == 2*e, "Wrong edge number.");
deba@1680
    63
deba@1680
    64
  int uee = 0;
klao@1909
    65
  for (typename Graph::UEdgeIt it(g); it != INVALID; ++it) {
deba@1680
    66
    ++uee;
deba@1680
    67
  }
deba@1680
    68
klao@1909
    69
  check(uee == e, "Wrong uedge number.");
klao@1909
    70
  check(countUEdges(g) == e, "Wrong uedge number.");
klao@1053
    71
}
klao@1053
    72
klao@1054
    73
template <typename Graph>
klao@1053
    74
void print_items(Graph &g) {
klao@1054
    75
klao@1054
    76
  typedef typename Graph::NodeIt NodeIt;
klao@1909
    77
  typedef typename Graph::UEdgeIt UEdgeIt;
klao@1054
    78
  typedef typename Graph::EdgeIt EdgeIt;
klao@1054
    79
alpar@1367
    80
  std::cout << "Nodes" << std::endl;
klao@1053
    81
  int i=0;
klao@1053
    82
  for(NodeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
    83
    std::cout << "  " << i << ": " << g.id(it) << std::endl;
klao@1053
    84
  }
klao@1053
    85
klao@1909
    86
  std::cout << "UEdge" << std::endl;
klao@1053
    87
  i=0;
klao@1053
    88
  for(UEdgeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
    89
    std::cout << "  " << i << ": " << g.id(it) 
klao@1053
    90
	 << " (" << g.id(g.source(it)) << ", " << g.id(g.target(it)) 
alpar@1367
    91
	 << ")" << std::endl;
klao@1053
    92
  }
klao@1053
    93
alpar@1367
    94
  std::cout << "Edge" << std::endl;
klao@1053
    95
  i=0;
klao@1053
    96
  for(EdgeIt it(g); it!=INVALID; ++it, ++i) {
alpar@1367
    97
    std::cout << "  " << i << ": " << g.id(it)
klao@1053
    98
	 << " (" << g.id(g.source(it)) << ", " << g.id(g.target(it)) 
alpar@1367
    99
	 << ")" << std::endl;
klao@1053
   100
  }
klao@1053
   101
klao@1053
   102
}
klao@1053
   103
klao@1054
   104
template <typename Graph>
klao@1054
   105
void check_graph() {
klao@1053
   106
klao@1054
   107
  typedef typename Graph::Node Node;
klao@1909
   108
  typedef typename Graph::UEdge UEdge;
klao@1054
   109
  typedef typename Graph::Edge Edge;
klao@1054
   110
  typedef typename Graph::NodeIt NodeIt;
klao@1909
   111
  typedef typename Graph::UEdgeIt UEdgeIt;
klao@1054
   112
  typedef typename Graph::EdgeIt EdgeIt;
klao@1053
   113
klao@1053
   114
  Graph g;
klao@1053
   115
klao@1053
   116
  check_item_counts(g,0,0);
klao@1053
   117
klao@1053
   118
  Node
klao@1053
   119
    n1 = g.addNode(),
klao@1053
   120
    n2 = g.addNode(),
klao@1053
   121
    n3 = g.addNode();
klao@1053
   122
klao@1053
   123
  UEdge
klao@1053
   124
    e1 = g.addEdge(n1, n2),
klao@1053
   125
    e2 = g.addEdge(n2, n3);
klao@1053
   126
klao@1053
   127
  // print_items(g);
klao@1053
   128
klao@1053
   129
  check_item_counts(g,3,2);
deba@1680
   130
}
klao@1030
   131
deba@1979
   132
void checkGridUGraph(const GridUGraph& g, int w, int h) {
deba@1680
   133
  check(g.width() == w, "Wrong width");
deba@1680
   134
  check(g.height() == h, "Wrong height");
klao@1054
   135
deba@1680
   136
  for (int i = 0; i < w; ++i) {
deba@1680
   137
    for (int j = 0; j < h; ++j) {
deba@1680
   138
      check(g.col(g(i, j)) == i, "Wrong col");
deba@1680
   139
      check(g.row(g(i, j)) == j, "Wrong row");
deba@1680
   140
    }
deba@1680
   141
  }
deba@1680
   142
  
deba@1680
   143
  for (int i = 0; i < w; ++i) {
deba@1680
   144
    for (int j = 0; j < h - 1; ++j) {
deba@1680
   145
      check(g.source(g.down(g(i, j))) == g(i, j), "Wrong down");
deba@1680
   146
      check(g.target(g.down(g(i, j))) == g(i, j + 1), "Wrong down");
deba@1680
   147
    }
deba@1680
   148
    check(g.down(g(i, h - 1)) == INVALID, "Wrong down");
deba@1680
   149
  }
deba@1680
   150
deba@1680
   151
  for (int i = 0; i < w; ++i) {
deba@1680
   152
    for (int j = 1; j < h; ++j) {
deba@1680
   153
      check(g.source(g.up(g(i, j))) == g(i, j), "Wrong up");
deba@1680
   154
      check(g.target(g.up(g(i, j))) == g(i, j - 1), "Wrong up");
deba@1680
   155
    }
deba@1680
   156
    check(g.up(g(i, 0)) == INVALID, "Wrong up");
deba@1680
   157
  }
deba@1680
   158
deba@1680
   159
  for (int j = 0; j < h; ++j) {
deba@1680
   160
    for (int i = 0; i < w - 1; ++i) {
deba@1680
   161
      check(g.source(g.right(g(i, j))) == g(i, j), "Wrong right");
deba@1680
   162
      check(g.target(g.right(g(i, j))) == g(i + 1, j), "Wrong right");      
deba@1680
   163
    }
deba@1680
   164
    check(g.right(g(w - 1, j)) == INVALID, "Wrong right");    
deba@1680
   165
  }
deba@1680
   166
deba@1680
   167
  for (int j = 0; j < h; ++j) {
deba@1680
   168
    for (int i = 1; i < w; ++i) {
deba@1680
   169
      check(g.source(g.left(g(i, j))) == g(i, j), "Wrong left");
deba@1680
   170
      check(g.target(g.left(g(i, j))) == g(i - 1, j), "Wrong left");      
deba@1680
   171
    }
deba@1680
   172
    check(g.left(g(0, j)) == INVALID, "Wrong left");    
deba@1680
   173
  }
klao@1054
   174
}
klao@1054
   175
klao@1054
   176
int main() {
klao@1054
   177
  check_concepts();
klao@1054
   178
klao@1909
   179
  check_graph<ListUGraph>();
klao@1909
   180
  check_graph<SmartUGraph>();
klao@1054
   181
deba@1568
   182
  {
klao@1909
   183
    FullUGraph g(5);
deba@1568
   184
    check_item_counts(g, 5, 10);
deba@1568
   185
  }
deba@1568
   186
deba@1680
   187
  {
deba@1979
   188
    GridUGraph g(5, 6);
deba@1680
   189
    check_item_counts(g, 30, 49);
deba@1979
   190
    checkGridUGraph(g, 5, 6);
deba@1680
   191
  }
deba@1680
   192
deba@1680
   193
  std::cout << __FILE__ ": All tests passed.\n";
deba@1680
   194
klao@962
   195
  return 0;
klao@962
   196
}