/* -*- mode: C++; indent-tabs-mode: nil; -*- * * This file is a part of LEMON, a generic C++ optimization library. * * Copyright (C) 2003-2008 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted * provided that this copyright notice appears in all copies. For * precise terms see the accompanying LICENSE file. * * This software is provided "AS IS" with no warranty of any kind, * express or implied, and with no claim as to its suitability for any * purpose. * */ #include #include #include // #include #include #include "test_tools.h" #include "graph_test.h" using namespace lemon; using namespace lemon::concepts; template void checkGraph() { TEMPLATE_GRAPH_TYPEDEFS(Graph); Graph G; checkGraphNodeList(G, 0); checkGraphEdgeList(G, 0); Node n1 = G.addNode(), n2 = G.addNode(), n3 = G.addNode(); checkGraphNodeList(G, 3); checkGraphEdgeList(G, 0); Edge e1 = G.addEdge(n1, n2); check((G.u(e1) == n1 && G.v(e1) == n2) || (G.u(e1) == n2 && G.v(e1) == n1), "Wrong edge"); checkGraphNodeList(G, 3); checkGraphArcList(G, 2); checkGraphEdgeList(G, 1); checkGraphOutArcList(G, n1, 1); checkGraphOutArcList(G, n2, 1); checkGraphOutArcList(G, n3, 0); checkGraphInArcList(G, n1, 1); checkGraphInArcList(G, n2, 1); checkGraphInArcList(G, n3, 0); checkGraphIncEdgeList(G, n1, 1); checkGraphIncEdgeList(G, n2, 1); checkGraphIncEdgeList(G, n3, 0); checkGraphConArcList(G, 2); checkGraphConEdgeList(G, 1); Edge e2 = G.addEdge(n2, n1), e3 = G.addEdge(n2, n3); checkGraphNodeList(G, 3); checkGraphArcList(G, 6); checkGraphEdgeList(G, 3); checkGraphOutArcList(G, n1, 2); checkGraphOutArcList(G, n2, 3); checkGraphOutArcList(G, n3, 1); checkGraphInArcList(G, n1, 2); checkGraphInArcList(G, n2, 3); checkGraphInArcList(G, n3, 1); checkGraphIncEdgeList(G, n1, 2); checkGraphIncEdgeList(G, n2, 3); checkGraphIncEdgeList(G, n3, 1); checkGraphConArcList(G, 6); checkGraphConEdgeList(G, 3); checkArcDirections(G); checkNodeIds(G); checkArcIds(G); checkEdgeIds(G); checkGraphNodeMap(G); checkGraphArcMap(G); checkGraphEdgeMap(G); } void checkConcepts() { { // Checking graph components checkConcept(); checkConcept, IDableGraphComponent<> >(); checkConcept, IterableGraphComponent<> >(); checkConcept, MappableGraphComponent<> >(); } { // Checking skeleton graph checkConcept(); } { // Checking ListGraph checkConcept(); checkConcept, ListGraph>(); checkConcept, ListGraph>(); checkConcept, ListGraph>(); checkConcept, ListGraph>(); } { // Checking SmartGraph checkConcept(); checkConcept, SmartGraph>(); checkConcept, SmartGraph>(); checkConcept, SmartGraph>(); } // { // Checking FullGraph // checkConcept(); // checkGraphIterators(); // } { // Checking GridGraph checkConcept(); } } template void checkGraphValidity() { TEMPLATE_GRAPH_TYPEDEFS(Graph); Graph g; Node n1 = g.addNode(), n2 = g.addNode(), n3 = g.addNode(); Edge e1 = g.addEdge(n1, n2), e2 = g.addEdge(n2, n3); check(g.valid(n1), "Wrong validity check"); check(g.valid(e1), "Wrong validity check"); check(g.valid(g.direct(e1, true)), "Wrong validity check"); check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); check(!g.valid(g.edgeFromId(-1)), "Wrong validity check"); check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); } template void checkGraphValidityErase() { TEMPLATE_GRAPH_TYPEDEFS(Graph); Graph g; Node n1 = g.addNode(), n2 = g.addNode(), n3 = g.addNode(); Edge e1 = g.addEdge(n1, n2), e2 = g.addEdge(n2, n3); check(g.valid(n1), "Wrong validity check"); check(g.valid(e1), "Wrong validity check"); check(g.valid(g.direct(e1, true)), "Wrong validity check"); g.erase(n1); check(!g.valid(n1), "Wrong validity check"); check(g.valid(n2), "Wrong validity check"); check(g.valid(n3), "Wrong validity check"); check(!g.valid(e1), "Wrong validity check"); check(g.valid(e2), "Wrong validity check"); check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); check(!g.valid(g.edgeFromId(-1)), "Wrong validity check"); check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); } void checkGridGraph(int width, int height) { typedef GridGraph Graph; GRAPH_TYPEDEFS(Graph); Graph G(width, height); check(G.width() == width, "Wrong row number"); check(G.height() == height, "Wrong column number"); for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) { check(G.col(G(i, j)) == i, "Wrong column"); check(G.row(G(i, j)) == j, "Wrong row"); check(G.pos(G(i, j)).x == i, "Wrong column"); check(G.pos(G(i, j)).y == j, "Wrong row"); } } for (int j = 0; j < height; ++j) { for (int i = 0; i < width - 1; ++i) { check(G.source(G.right(G(i, j))) == G(i, j), "Wrong right"); check(G.target(G.right(G(i, j))) == G(i + 1, j), "Wrong right"); } check(G.right(G(width - 1, j)) == INVALID, "Wrong right"); } for (int j = 0; j < height; ++j) { for (int i = 1; i < width; ++i) { check(G.source(G.left(G(i, j))) == G(i, j), "Wrong left"); check(G.target(G.left(G(i, j))) == G(i - 1, j), "Wrong left"); } check(G.left(G(0, j)) == INVALID, "Wrong left"); } for (int i = 0; i < width; ++i) { for (int j = 0; j < height - 1; ++j) { check(G.source(G.up(G(i, j))) == G(i, j), "Wrong up"); check(G.target(G.up(G(i, j))) == G(i, j + 1), "Wrong up"); } check(G.up(G(i, height - 1)) == INVALID, "Wrong up"); } for (int i = 0; i < width; ++i) { for (int j = 1; j < height; ++j) { check(G.source(G.down(G(i, j))) == G(i, j), "Wrong down"); check(G.target(G.down(G(i, j))) == G(i, j - 1), "Wrong down"); } check(G.down(G(i, 0)) == INVALID, "Wrong down"); } checkGraphNodeList(G, width * height); checkGraphEdgeList(G, width * (height - 1) + (width - 1) * height); checkGraphArcList(G, 2 * (width * (height - 1) + (width - 1) * height)); for (NodeIt n(G); n != INVALID; ++n) { int nb = 4; if (G.col(n) == 0) --nb; if (G.col(n) == width - 1) --nb; if (G.row(n) == 0) --nb; if (G.row(n) == height - 1) --nb; checkGraphOutArcList(G, n, nb); checkGraphInArcList(G, n, nb); checkGraphIncEdgeList(G, n, nb); } checkArcDirections(G); checkGraphConArcList(G, 2 * (width * (height - 1) + (width - 1) * height)); checkGraphConEdgeList(G, width * (height - 1) + (width - 1) * height); checkNodeIds(G); checkArcIds(G); checkEdgeIds(G); checkGraphNodeMap(G); checkGraphArcMap(G); checkGraphEdgeMap(G); } void checkGraphs() { { // Checking ListGraph checkGraph(); checkGraphValidityErase(); } { // Checking SmartGraph checkGraph(); checkGraphValidity(); } // { // Checking FullGraph // FullGraph g(5); // checkGraphNodeList(g, 5); // checkGraphEdgeList(g, 10); // } { // Checking GridGraph checkGridGraph(5, 8); checkGridGraph(8, 5); checkGridGraph(5, 5); checkGridGraph(0, 0); checkGridGraph(1, 1); } } int main() { checkConcepts(); checkGraphs(); return 0; }