src/test/graph_test.cc
changeset 938 70e2886211d5
parent 937 d4e911acef3d
child 946 c94ef40a22ce
     1.1 --- a/src/test/graph_test.cc	Mon Oct 04 17:13:21 2004 +0000
     1.2 +++ b/src/test/graph_test.cc	Tue Oct 05 09:41:05 2004 +0000
     1.3 @@ -67,27 +67,34 @@
     1.4  }
     1.5  
     1.6  //Compile Graph
     1.7 -template void lemon::checkCompileStaticGraph<skeleton::StaticGraph>
     1.8 +template void lemon::skeleton::checkCompileStaticGraph<skeleton::StaticGraph>
     1.9  (skeleton::StaticGraph &);
    1.10  
    1.11 -template void lemon::checkCompileGraph<skeleton::ExtendableGraph>
    1.12 +template
    1.13 +void lemon::skeleton::checkCompileExtendableGraph<skeleton::ExtendableGraph>
    1.14  (skeleton::ExtendableGraph &);
    1.15  
    1.16 -template void lemon::checkCompileErasableGraph<skeleton::ErasableGraph>
    1.17 +template
    1.18 +void lemon::skeleton::checkCompileErasableGraph<skeleton::ErasableGraph>
    1.19  (skeleton::ErasableGraph &);
    1.20  
    1.21  //Compile SmartGraph
    1.22 -template void lemon::checkCompileGraph<SmartGraph>(SmartGraph &);
    1.23 -template void lemon::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.24 +template
    1.25 +void lemon::skeleton::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
    1.26 +template
    1.27 +void lemon::skeleton::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.28  
    1.29  //Compile SymSmartGraph
    1.30  //template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    1.31  //template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    1.32  
    1.33  //Compile ListGraph
    1.34 -template void lemon::checkCompileGraph<ListGraph>(ListGraph &);
    1.35 -template void lemon::checkCompileErasableGraph<ListGraph>(ListGraph &);
    1.36 -template void lemon::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.37 +template
    1.38 +void lemon::skeleton::checkCompileExtendableGraph<ListGraph>(ListGraph &);
    1.39 +template
    1.40 +void lemon::skeleton::checkCompileErasableGraph<ListGraph>(ListGraph &);
    1.41 +template
    1.42 +void lemon::skeleton::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.43  
    1.44  
    1.45  //Compile SymListGraph
    1.46 @@ -96,22 +103,24 @@
    1.47  //template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.48  
    1.49  //Compile FullGraph
    1.50 -template void lemon::checkCompileStaticGraph<FullGraph>(FullGraph &);
    1.51 -template void lemon::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.52 +template void lemon::skeleton::checkCompileStaticGraph<FullGraph>(FullGraph &);
    1.53 +template
    1.54 +void lemon::skeleton::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.55  
    1.56  //Compile EdgeSet <ListGraph>
    1.57 -template void lemon::checkCompileGraph<EdgeSet <ListGraph> >
    1.58 +template void lemon::skeleton::checkCompileExtendableGraph<EdgeSet <ListGraph> >
    1.59  (EdgeSet <ListGraph> &);
    1.60 -template void lemon::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    1.61 +template void lemon::skeleton::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    1.62  (EdgeSet <ListGraph> &);
    1.63 -template void lemon::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    1.64 +template void lemon::skeleton::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    1.65  (EdgeSet <ListGraph> &);
    1.66  
    1.67  //Compile EdgeSet <NodeSet>
    1.68 -template void lemon::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
    1.69 -template void lemon::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
    1.70 +template void lemon::skeleton::checkCompileExtendableGraph<EdgeSet <NodeSet> >
    1.71  (EdgeSet <NodeSet> &);
    1.72 -template void lemon::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    1.73 +template void lemon::skeleton::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
    1.74 +(EdgeSet <NodeSet> &);
    1.75 +template void lemon::skeleton::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    1.76  (EdgeSet <NodeSet> &);
    1.77  
    1.78