src/test/graph_test.cc
changeset 873 f3a30fda2e49
parent 826 056fbb112b30
child 880 9d0bfd35b97c
     1.1 --- a/src/test/graph_test.cc	Thu Sep 16 19:18:18 2004 +0000
     1.2 +++ b/src/test/graph_test.cc	Thu Sep 16 19:23:41 2004 +0000
     1.3 @@ -52,50 +52,51 @@
     1.4  }
     1.5  
     1.6  //Compile GraphSkeleton
     1.7 -template void checkCompileStaticGraph<skeleton::StaticGraphSkeleton>
     1.8 +template void hugo::checkCompileStaticGraph<skeleton::StaticGraphSkeleton>
     1.9  (skeleton::StaticGraphSkeleton &);
    1.10  
    1.11 -template void checkCompileGraph<skeleton::GraphSkeleton>
    1.12 -(skeleton::GraphSkeleton &);
    1.13 +template void hugo::checkCompileGraph<skeleton::ExtendableGraphSkeleton>
    1.14 +(skeleton::ExtendableGraphSkeleton &);
    1.15  
    1.16 -template void checkCompileErasableGraph<skeleton::ErasableGraphSkeleton>
    1.17 +template void hugo::checkCompileErasableGraph<skeleton::ErasableGraphSkeleton>
    1.18  (skeleton::ErasableGraphSkeleton &);
    1.19  
    1.20  //Compile SmartGraph
    1.21 -template void checkCompileGraph<SmartGraph>(SmartGraph &);
    1.22 -template void checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.23 +template void hugo::checkCompileGraph<SmartGraph>(SmartGraph &);
    1.24 +template void hugo::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.25  
    1.26  //Compile SymSmartGraph
    1.27 -template void checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    1.28 -template void checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    1.29 +template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    1.30 +template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    1.31  
    1.32  //Compile ListGraph
    1.33 -template void checkCompileGraph<ListGraph>(ListGraph &);
    1.34 -template void checkCompileErasableGraph<ListGraph>(ListGraph &);
    1.35 -template void checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.36 +template void hugo::checkCompileGraph<ListGraph>(ListGraph &);
    1.37 +template void hugo::checkCompileErasableGraph<ListGraph>(ListGraph &);
    1.38 +template void hugo::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.39  
    1.40  
    1.41  //Compile SymListGraph
    1.42 -template void checkCompileGraph<SymListGraph>(SymListGraph &);
    1.43 -template void checkCompileErasableGraph<SymListGraph>(SymListGraph &);
    1.44 -template void checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.45 +template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
    1.46 +template void hugo::checkCompileErasableGraph<SymListGraph>(SymListGraph &);
    1.47 +template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.48  
    1.49  //Compile FullGraph
    1.50 -template void checkCompileStaticGraph<FullGraph>(FullGraph &);
    1.51 -template void checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.52 +template void hugo::checkCompileStaticGraph<FullGraph>(FullGraph &);
    1.53 +template void hugo::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.54  
    1.55  //Compile EdgeSet <ListGraph>
    1.56 -template void checkCompileGraph<EdgeSet <ListGraph> >(EdgeSet <ListGraph> &);
    1.57 -template void checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    1.58 +template void hugo::checkCompileGraph<EdgeSet <ListGraph> >
    1.59  (EdgeSet <ListGraph> &);
    1.60 -template void checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    1.61 +template void hugo::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    1.62 +(EdgeSet <ListGraph> &);
    1.63 +template void hugo::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    1.64  (EdgeSet <ListGraph> &);
    1.65  
    1.66  //Compile EdgeSet <NodeSet>
    1.67 -template void checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
    1.68 -template void checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
    1.69 +template void hugo::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
    1.70 +template void hugo::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
    1.71  (EdgeSet <NodeSet> &);
    1.72 -template void checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    1.73 +template void hugo::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    1.74  (EdgeSet <NodeSet> &);
    1.75  
    1.76