diff -r a8b6524091ce -r 6a22e0dfd453 src/test/graph_test.cc --- a/src/test/graph_test.cc Fri Sep 24 11:55:54 2004 +0000 +++ b/src/test/graph_test.cc Sun Sep 26 21:43:38 2004 +0000 @@ -63,7 +63,6 @@ for(NodeIt n(G);n!=INVALID;++n) { checkGraphInEdgeList(G,n,3); checkGraphOutEdgeList(G,n,3); - ++n; } } @@ -82,8 +81,8 @@ template void hugo::checkCompileGraphFindEdge(SmartGraph &); //Compile SymSmartGraph -template void hugo::checkCompileGraph(SymSmartGraph &); -template void hugo::checkCompileGraphFindEdge(SymSmartGraph &); +//template void hugo::checkCompileGraph(SymSmartGraph &); +//template void hugo::checkCompileGraphFindEdge(SymSmartGraph &); //Compile ListGraph template void hugo::checkCompileGraph(ListGraph &); @@ -92,9 +91,9 @@ //Compile SymListGraph -template void hugo::checkCompileGraph(SymListGraph &); -template void hugo::checkCompileErasableGraph(SymListGraph &); -template void hugo::checkCompileGraphFindEdge(SymListGraph &); +//template void hugo::checkCompileGraph(SymListGraph &); +//template void hugo::checkCompileErasableGraph(SymListGraph &); +//template void hugo::checkCompileGraphFindEdge(SymListGraph &); //Compile FullGraph template void hugo::checkCompileStaticGraph(FullGraph &); @@ -131,14 +130,14 @@ checkPetersen(G); } { - SymSmartGraph G; - addPetersen(G); - checkPetersen(G); + // SymSmartGraph G; + // addPetersen(G); + // checkPetersen(G); } { - SymListGraph G; - addPetersen(G); - checkPetersen(G); + // SymListGraph G; + // addPetersen(G); + // checkPetersen(G); } ///\file