diff -r c6acc34f98dc -r 1a7fe3bef514 test/graph_test.h --- a/test/graph_test.h Fri Oct 16 10:21:37 2009 +0200 +++ b/test/graph_test.h Thu Nov 05 15:50:01 2009 +0100 @@ -2,7 +2,7 @@ * * This file is a part of LEMON, a generic C++ optimization library. * - * Copyright (C) 2003-2008 + * Copyright (C) 2003-2009 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * @@ -117,6 +117,15 @@ } template + void checkGraphIncEdgeArcLists(const Graph &G, typename Graph::Node n, + int cnt) + { + checkGraphIncEdgeList(G, n, cnt); + checkGraphOutArcList(G, n, cnt); + checkGraphInArcList(G, n, cnt); + } + + template void checkGraphConArcList(const Graph &G, int cnt) { int i = 0; for (typename Graph::NodeIt u(G); u != INVALID; ++u) {