COIN-OR::LEMON - Graph Library

Changeset 880:9d0bfd35b97c in lemon-0.x for src/test


Ignore:
Timestamp:
09/17/04 17:51:50 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1188
Message:
  • Name changing: XYZGraphSkeleton -> XYZGraph
  • Fix some bad \ref's in the doc.
Location:
src/test
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • src/test/bfs_test.cc

    r793 r880  
    1111void check_Bfs_Compile()
    1212{
    13   typedef skeleton::StaticGraphSkeleton Graph;
     13  typedef skeleton::StaticGraph Graph;
    1414
    1515  typedef Graph::Edge Edge;
  • src/test/dfs_test.cc

    r793 r880  
    1111void check_Dfs_SmartGraph_Compile()
    1212{
    13   typedef skeleton::StaticGraphSkeleton Graph;
     13  typedef skeleton::StaticGraph Graph;
    1414
    1515  typedef Graph::Edge Edge;
  • src/test/dijkstra_test.cc

    r793 r880  
    1212{
    1313  typedef int VType;
    14   typedef skeleton::StaticGraphSkeleton Graph;
     14  typedef skeleton::StaticGraph Graph;
    1515
    1616  typedef Graph::Edge Edge;
  • src/test/graph_test.cc

    r873 r880  
    5252}
    5353
    54 //Compile GraphSkeleton
    55 template void hugo::checkCompileStaticGraph<skeleton::StaticGraphSkeleton>
    56 (skeleton::StaticGraphSkeleton &);
     54//Compile Graph
     55template void hugo::checkCompileStaticGraph<skeleton::StaticGraph>
     56(skeleton::StaticGraph &);
    5757
    58 template void hugo::checkCompileGraph<skeleton::ExtendableGraphSkeleton>
    59 (skeleton::ExtendableGraphSkeleton &);
     58template void hugo::checkCompileGraph<skeleton::ExtendableGraph>
     59(skeleton::ExtendableGraph &);
    6060
    61 template void hugo::checkCompileErasableGraph<skeleton::ErasableGraphSkeleton>
    62 (skeleton::ErasableGraphSkeleton &);
     61template void hugo::checkCompileErasableGraph<skeleton::ErasableGraph>
     62(skeleton::ErasableGraph &);
    6363
    6464//Compile SmartGraph
  • src/test/kruskal_test.cc

    r810 r880  
    1515void checkCompileKruskal()
    1616{
    17   skeleton::WriteMap<skeleton::StaticGraphSkeleton::Edge,bool> w;
     17  skeleton::WriteMap<skeleton::StaticGraph::Edge,bool> w;
    1818
    19   kruskalEdgeMap(skeleton::StaticGraphSkeleton(),
    20                  skeleton::ReadMap<skeleton::StaticGraphSkeleton::Edge,int>(),
     19  kruskalEdgeMap(skeleton::StaticGraph(),
     20                 skeleton::ReadMap<skeleton::StaticGraph::Edge,int>(),
    2121                 w);
    2222}
  • src/test/preflow_test.cc

    r859 r880  
    1414{
    1515  typedef int VType;
    16   typedef skeleton::StaticGraphSkeleton Graph;
     16  typedef skeleton::StaticGraph Graph;
    1717
    1818  typedef Graph::Node Node;
Note: See TracChangeset for help on using the changeset viewer.