Wrong member variable settings bug fix. (Ticket #95)
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 <lemon/graph_utils.h>
27 #include "test_tools.h"
30 using namespace lemon;
31 using namespace lemon::concepts;
33 void check_concepts() {
35 { // checking digraph components
36 checkConcept<BaseGraphComponent, BaseGraphComponent >();
38 checkConcept<IDableGraphComponent<>,
39 IDableGraphComponent<> >();
41 checkConcept<IterableGraphComponent<>,
42 IterableGraphComponent<> >();
44 checkConcept<MappableGraphComponent<>,
45 MappableGraphComponent<> >();
49 checkConcept<Graph, ListGraph>();
50 checkConcept<Graph, SmartGraph>();
51 // checkConcept<Graph, FullGraph>();
52 // checkConcept<Graph, Graph>();
53 // checkConcept<Graph, GridGraph>();
57 template <typename Graph>
58 void check_item_counts(Graph &g, int n, int e) {
60 for (typename Graph::NodeIt it(g); it != INVALID; ++it) {
64 check(nn == n, "Wrong node number.");
65 // check(countNodes(g) == n, "Wrong node number.");
68 for (typename Graph::ArcIt it(g); it != INVALID; ++it) {
72 check(ee == 2*e, "Wrong arc number.");
73 // check(countArcs(g) == 2*e, "Wrong arc number.");
76 for (typename Graph::EdgeIt it(g); it != INVALID; ++it) {
80 check(uee == e, "Wrong edge number.");
81 // check(countEdges(g) == e, "Wrong edge number.");
84 template <typename Graph>
85 void check_graph_counts() {
87 TEMPLATE_GRAPH_TYPEDEFS(Graph);
90 check_item_counts(g,0,0);
98 e1 = g.addEdge(n1, n2),
99 e2 = g.addEdge(n2, n3);
101 check_item_counts(g,3,2);
104 template <typename Graph>
105 void check_graph_validity() {
107 TEMPLATE_GRAPH_TYPEDEFS(Graph);
110 check_item_counts(g,0,0);
118 e1 = g.addEdge(n1, n2),
119 e2 = g.addEdge(n2, n3);
121 check(g.valid(n1), "Validity check");
122 check(g.valid(e1), "Validity check");
123 check(g.valid(g.direct(e1, true)), "Validity check");
125 check(!g.valid(g.nodeFromId(-1)), "Validity check");
126 check(!g.valid(g.edgeFromId(-1)), "Validity check");
127 check(!g.valid(g.arcFromId(-1)), "Validity check");
131 template <typename Graph>
132 void check_graph_validity_erase() {
134 TEMPLATE_GRAPH_TYPEDEFS(Graph);
137 check_item_counts(g,0,0);
145 e1 = g.addEdge(n1, n2),
146 e2 = g.addEdge(n2, n3);
148 check(g.valid(n1), "Validity check");
149 check(g.valid(e1), "Validity check");
150 check(g.valid(g.direct(e1, true)), "Validity check");
154 check(!g.valid(n1), "Validity check");
155 check(g.valid(n2), "Validity check");
156 check(g.valid(n3), "Validity check");
157 check(!g.valid(e1), "Validity check");
158 check(g.valid(e2), "Validity check");
160 check(!g.valid(g.nodeFromId(-1)), "Validity check");
161 check(!g.valid(g.edgeFromId(-1)), "Validity check");
162 check(!g.valid(g.arcFromId(-1)), "Validity check");
168 // void checkGridGraph(const GridGraph& g, int w, int h) {
169 // check(g.width() == w, "Wrong width");
170 // check(g.height() == h, "Wrong height");
172 // for (int i = 0; i < w; ++i) {
173 // for (int j = 0; j < h; ++j) {
174 // check(g.col(g(i, j)) == i, "Wrong col");
175 // check(g.row(g(i, j)) == j, "Wrong row");
179 // for (int i = 0; i < w; ++i) {
180 // for (int j = 0; j < h - 1; ++j) {
181 // check(g.source(g.down(g(i, j))) == g(i, j), "Wrong down");
182 // check(g.target(g.down(g(i, j))) == g(i, j + 1), "Wrong down");
184 // check(g.down(g(i, h - 1)) == INVALID, "Wrong down");
187 // for (int i = 0; i < w; ++i) {
188 // for (int j = 1; j < h; ++j) {
189 // check(g.source(g.up(g(i, j))) == g(i, j), "Wrong up");
190 // check(g.target(g.up(g(i, j))) == g(i, j - 1), "Wrong up");
192 // check(g.up(g(i, 0)) == INVALID, "Wrong up");
195 // for (int j = 0; j < h; ++j) {
196 // for (int i = 0; i < w - 1; ++i) {
197 // check(g.source(g.right(g(i, j))) == g(i, j), "Wrong right");
198 // check(g.target(g.right(g(i, j))) == g(i + 1, j), "Wrong right");
200 // check(g.right(g(w - 1, j)) == INVALID, "Wrong right");
203 // for (int j = 0; j < h; ++j) {
204 // for (int i = 1; i < w; ++i) {
205 // check(g.source(g.left(g(i, j))) == g(i, j), "Wrong left");
206 // check(g.target(g.left(g(i, j))) == g(i - 1, j), "Wrong left");
208 // check(g.left(g(0, j)) == INVALID, "Wrong left");
215 check_graph_counts<ListGraph>();
216 check_graph_counts<SmartGraph>();
218 check_graph_validity_erase<ListGraph>();
219 check_graph_validity<SmartGraph>();
223 // check_item_counts(g, 5, 10);
227 // GridGraph g(5, 6);
228 // check_item_counts(g, 30, 49);
229 // checkGridGraph(g, 5, 6);
232 std::cout << __FILE__ ": All tests passed.\n";