1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
 
     3  * This file is a part of LEMON, a generic C++ optimization library.
 
     5  * Copyright (C) 2003-2008
 
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
 
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
 
     9  * Permission to use, modify and distribute this software is granted
 
    10  * provided that this copyright notice appears in all copies. For
 
    11  * precise terms see the accompanying LICENSE file.
 
    13  * This software is provided "AS IS" with no warranty of any kind,
 
    14  * express or implied, and with no claim as to its suitability for any
 
    19 #include <lemon/concepts/graph.h>
 
    20 #include <lemon/list_graph.h>
 
    21 #include <lemon/smart_graph.h>
 
    22 // #include <lemon/full_graph.h>
 
    23 // #include <lemon/grid_graph.h>
 
    25 #include "test_tools.h"
 
    26 #include "graph_test.h"
 
    28 using namespace lemon;
 
    29 using namespace lemon::concepts;
 
    31 template <class Graph>
 
    33   TEMPLATE_GRAPH_TYPEDEFS(Graph);
 
    36   checkGraphNodeList(G, 0);
 
    37   checkGraphEdgeList(G, 0);
 
    43   checkGraphNodeList(G, 3);
 
    44   checkGraphEdgeList(G, 0);
 
    46   Edge e1 = G.addEdge(n1, n2);
 
    47   check((G.u(e1) == n1 && G.v(e1) == n2) || (G.u(e1) == n2 && G.v(e1) == n1),
 
    49   checkGraphNodeList(G, 3);
 
    50   checkGraphArcList(G, 2);
 
    51   checkGraphEdgeList(G, 1);
 
    53   checkGraphOutArcList(G, n1, 1);
 
    54   checkGraphOutArcList(G, n2, 1);
 
    55   checkGraphOutArcList(G, n3, 0);
 
    57   checkGraphInArcList(G, n1, 1);
 
    58   checkGraphInArcList(G, n2, 1);
 
    59   checkGraphInArcList(G, n3, 0);
 
    61   checkGraphIncEdgeList(G, n1, 1);
 
    62   checkGraphIncEdgeList(G, n2, 1);
 
    63   checkGraphIncEdgeList(G, n3, 0);
 
    65   checkGraphConArcList(G, 2);
 
    66   checkGraphConEdgeList(G, 1);
 
    68   Edge e2 = G.addEdge(n2, n1), e3 = G.addEdge(n2, n3);
 
    69   checkGraphNodeList(G, 3);
 
    70   checkGraphArcList(G, 6);
 
    71   checkGraphEdgeList(G, 3);
 
    73   checkGraphOutArcList(G, n1, 2);
 
    74   checkGraphOutArcList(G, n2, 3);
 
    75   checkGraphOutArcList(G, n3, 1);
 
    77   checkGraphInArcList(G, n1, 2);
 
    78   checkGraphInArcList(G, n2, 3);
 
    79   checkGraphInArcList(G, n3, 1);
 
    81   checkGraphIncEdgeList(G, n1, 2);
 
    82   checkGraphIncEdgeList(G, n2, 3);
 
    83   checkGraphIncEdgeList(G, n3, 1);
 
    85   checkGraphConArcList(G, 6);
 
    86   checkGraphConEdgeList(G, 3);
 
    88   checkArcDirections(G);
 
    98 void checkConcepts() {
 
    99   { // Checking graph components
 
   100     checkConcept<BaseGraphComponent, BaseGraphComponent >();
 
   102     checkConcept<IDableGraphComponent<>,
 
   103       IDableGraphComponent<> >();
 
   105     checkConcept<IterableGraphComponent<>,
 
   106       IterableGraphComponent<> >();
 
   108     checkConcept<MappableGraphComponent<>,
 
   109       MappableGraphComponent<> >();
 
   111   { // Checking skeleton graph
 
   112     checkConcept<Graph, Graph>();
 
   114   { // Checking ListGraph
 
   115     checkConcept<Graph, ListGraph>();
 
   116     checkConcept<AlterableGraphComponent<>, ListGraph>();
 
   117     checkConcept<ExtendableGraphComponent<>, ListGraph>();
 
   118     checkConcept<ClearableGraphComponent<>, ListGraph>();
 
   119     checkConcept<ErasableGraphComponent<>, ListGraph>();
 
   121   { // Checking SmartGraph
 
   122     checkConcept<Graph, SmartGraph>();
 
   123     checkConcept<AlterableGraphComponent<>, SmartGraph>();
 
   124     checkConcept<ExtendableGraphComponent<>, SmartGraph>();
 
   125     checkConcept<ClearableGraphComponent<>, SmartGraph>();
 
   127 //  { // Checking FullGraph
 
   128 //    checkConcept<Graph, FullGraph>();
 
   129 //    checkGraphIterators<FullGraph>();
 
   131 //  { // Checking GridGraph
 
   132 //    checkConcept<Graph, GridGraph>();
 
   133 //    checkGraphIterators<GridGraph>();
 
   137 template <typename Graph>
 
   138 void checkGraphValidity() {
 
   139   TEMPLATE_GRAPH_TYPEDEFS(Graph);
 
   148     e1 = g.addEdge(n1, n2),
 
   149     e2 = g.addEdge(n2, n3);
 
   151   check(g.valid(n1), "Wrong validity check");
 
   152   check(g.valid(e1), "Wrong validity check");
 
   153   check(g.valid(g.direct(e1, true)), "Wrong validity check");
 
   155   check(!g.valid(g.nodeFromId(-1)), "Wrong validity check");
 
   156   check(!g.valid(g.edgeFromId(-1)), "Wrong validity check");
 
   157   check(!g.valid(g.arcFromId(-1)), "Wrong validity check");
 
   160 template <typename Graph>
 
   161 void checkGraphValidityErase() {
 
   162   TEMPLATE_GRAPH_TYPEDEFS(Graph);
 
   171     e1 = g.addEdge(n1, n2),
 
   172     e2 = g.addEdge(n2, n3);
 
   174   check(g.valid(n1), "Wrong validity check");
 
   175   check(g.valid(e1), "Wrong validity check");
 
   176   check(g.valid(g.direct(e1, true)), "Wrong validity check");
 
   180   check(!g.valid(n1), "Wrong validity check");
 
   181   check(g.valid(n2), "Wrong validity check");
 
   182   check(g.valid(n3), "Wrong validity check");
 
   183   check(!g.valid(e1), "Wrong validity check");
 
   184   check(g.valid(e2), "Wrong validity check");
 
   186   check(!g.valid(g.nodeFromId(-1)), "Wrong validity check");
 
   187   check(!g.valid(g.edgeFromId(-1)), "Wrong validity check");
 
   188   check(!g.valid(g.arcFromId(-1)), "Wrong validity check");
 
   191 // void checkGridGraph(const GridGraph& g, int w, int h) {
 
   192 //   check(g.width() == w, "Wrong width");
 
   193 //   check(g.height() == h, "Wrong height");
 
   195 //   for (int i = 0; i < w; ++i) {
 
   196 //     for (int j = 0; j < h; ++j) {
 
   197 //       check(g.col(g(i, j)) == i, "Wrong col");
 
   198 //       check(g.row(g(i, j)) == j, "Wrong row");
 
   202 //   for (int i = 0; i < w; ++i) {
 
   203 //     for (int j = 0; j < h - 1; ++j) {
 
   204 //       check(g.source(g.down(g(i, j))) == g(i, j), "Wrong down");
 
   205 //       check(g.target(g.down(g(i, j))) == g(i, j + 1), "Wrong down");
 
   207 //     check(g.down(g(i, h - 1)) == INVALID, "Wrong down");
 
   210 //   for (int i = 0; i < w; ++i) {
 
   211 //     for (int j = 1; j < h; ++j) {
 
   212 //       check(g.source(g.up(g(i, j))) == g(i, j), "Wrong up");
 
   213 //       check(g.target(g.up(g(i, j))) == g(i, j - 1), "Wrong up");
 
   215 //     check(g.up(g(i, 0)) == INVALID, "Wrong up");
 
   218 //   for (int j = 0; j < h; ++j) {
 
   219 //     for (int i = 0; i < w - 1; ++i) {
 
   220 //       check(g.source(g.right(g(i, j))) == g(i, j), "Wrong right");
 
   221 //       check(g.target(g.right(g(i, j))) == g(i + 1, j), "Wrong right");
 
   223 //     check(g.right(g(w - 1, j)) == INVALID, "Wrong right");
 
   226 //   for (int j = 0; j < h; ++j) {
 
   227 //     for (int i = 1; i < w; ++i) {
 
   228 //       check(g.source(g.left(g(i, j))) == g(i, j), "Wrong left");
 
   229 //       check(g.target(g.left(g(i, j))) == g(i - 1, j), "Wrong left");
 
   231 //     check(g.left(g(0, j)) == INVALID, "Wrong left");
 
   236   { // Checking ListGraph
 
   237     checkGraph<ListGraph>();
 
   238     checkGraphValidityErase<ListGraph>();
 
   240   { // Checking SmartGraph
 
   241     checkGraph<SmartGraph>();
 
   242     checkGraphValidity<SmartGraph>();
 
   244 //   { // Checking FullGraph
 
   246 //     checkGraphNodeList(g, 5);
 
   247 //     checkGraphEdgeList(g, 10);
 
   249 //   { // Checking GridGraph
 
   250 //     GridGraph g(5, 6);
 
   251 //     checkGraphNodeList(g, 30);
 
   252 //     checkGraphEdgeList(g, 49);
 
   253 //     checkGridGraph(g, 5, 6);