src/test/sym_graph_test.h
changeset 938 70e2886211d5
parent 937 d4e911acef3d
child 959 c80ef5912903
     1.1 --- a/src/test/sym_graph_test.h	Mon Oct 04 17:13:21 2004 +0000
     1.2 +++ b/src/test/sym_graph_test.h	Tue Oct 05 09:41:05 2004 +0000
     1.3 @@ -24,7 +24,11 @@
     1.4  //! \file
     1.5  //! \brief Some utility to test symmetric graph classes.
     1.6  namespace lemon {
     1.7 +  
     1.8 +  /// \e
     1.9  
    1.10 +  /// \todo This should go to lemon/skeleton/symgraph.h
    1.11 +  ///
    1.12    template<class Graph> void checkCompileStaticSymGraph(Graph &G) 
    1.13      {
    1.14        typedef typename Graph::Node Node;
    1.15 @@ -36,7 +40,7 @@
    1.16        typedef typename Graph::InEdgeIt InEdgeIt;
    1.17        typedef typename Graph::OutEdgeIt OutEdgeIt;
    1.18  
    1.19 -      checkCompileStaticGraph(G);
    1.20 +      lemon::skeleton::checkCompileStaticGraph(G);
    1.21    
    1.22        {
    1.23  	SymEdge i; SymEdge j(i); SymEdge k(INVALID);
    1.24 @@ -153,7 +157,7 @@
    1.25    template<class Graph> void checkCompileErasableSymGraph(Graph &G) 
    1.26      {
    1.27        checkCompileSymGraph(G);
    1.28 -      checkCompileGraphEraseNode(G);
    1.29 +      lemon::skeleton::checkCompileGraphEraseNode(G);
    1.30        checkCompileSymGraphEraseSymEdge(G);
    1.31      }
    1.32