diff -r bb77eaa8fa0e -r 6153d9cf78c6 src/test/graph_test.cc --- a/src/test/graph_test.cc Wed Sep 29 10:35:35 2004 +0000 +++ b/src/test/graph_test.cc Wed Sep 29 14:02:14 2004 +0000 @@ -63,6 +63,7 @@ for(NodeIt n(G);n!=INVALID;++n) { checkGraphInEdgeList(G,n,3); checkGraphOutEdgeList(G,n,3); + ++n; } } @@ -81,8 +82,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 &); @@ -91,9 +92,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 &); @@ -130,14 +131,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