COIN-OR::LEMON - Graph Library

Changeset 793:9cd0aeea47b0 in lemon-0.x for src/test/graph_test.cc


Ignore:
Timestamp:
09/03/04 11:41:50 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1087
Message:
  • BFD/DFS/Dijkstra compile test is done with skeleton::GraphSkeleton? graph and skeleton::ReadMap?.
  • 'skeleton::' is explicitely written instead of 'using namespace ...' in graph_test.cc
  • Output messages of type "makeRep(3)..." in unionfind_test.cc have been changed in order not to confuse compiler output parsers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_test.cc

    r787 r793  
    1919
    2020using namespace hugo;
    21 using namespace hugo::skeleton;
    2221
    2322template<class Graph> void checkCompileStaticGraph(Graph &G)
     
    342341
    343342//Compile GraphSkeleton
    344 template
    345 void checkCompileStaticGraph<StaticGraphSkeleton>(StaticGraphSkeleton &);
    346 template void checkCompile<GraphSkeleton>(GraphSkeleton &);
    347 template
    348 void checkCompileErase<EraseableGraphSkeleton>(EraseableGraphSkeleton &);
     343template void checkCompileStaticGraph<skeleton::StaticGraphSkeleton>
     344(skeleton::StaticGraphSkeleton &);
     345
     346template void checkCompile<skeleton::GraphSkeleton>(skeleton::GraphSkeleton &);
     347
     348template void checkCompileErase<skeleton::EraseableGraphSkeleton>
     349(skeleton::EraseableGraphSkeleton &);
    349350
    350351//Compile SmartGraph
Note: See TracChangeset for help on using the changeset viewer.