COIN-OR::LEMON - Graph Library

Changeset 2111:ea1fa1bc3f6d in lemon-0.x for test/graph_factory_test.cc


Ignore:
Timestamp:
06/28/06 17:06:24 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2817
Message:

Removing concepts for extendable and erasable graphs
Renaming StaticGraph? to Graph

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/graph_factory_test.cc

    r1956 r2111  
    7171
    7272//Compile Graph
    73 template void lemon::concept::checkCompileStaticGraph<concept::StaticGraph>
    74 (concept::StaticGraph &);
     73template void lemon::concept::checkCompileGraph<concept::Graph>
     74(concept::Graph &);
    7575
    7676template
    77 void lemon::concept::checkCompileExtendableGraph<concept::ExtendableGraph>
    78 (concept::ExtendableGraph &);
     77void lemon::concept::checkCompileGraph<concept::Graph>
     78(concept::Graph &);
    7979
    8080template
    81 void lemon::concept::checkCompileErasableGraph<concept::ErasableGraph>
    82 (concept::ErasableGraph &);
     81void lemon::concept::checkCompileGraph<concept::Graph>
     82(concept::Graph &);
    8383
    8484//Compile SmartGraph
    8585template
    86 void lemon::concept::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
     86void lemon::concept::checkCompileGraph<SmartGraph>(SmartGraph &);
    8787template
    8888void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
     
    9494//Compile ListGraph
    9595template
    96 void lemon::concept::checkCompileExtendableGraph<ListGraph>(ListGraph &);
     96void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    9797template
    98 void lemon::concept::checkCompileErasableGraph<ListGraph>(ListGraph &);
     98void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    9999template
    100100void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
     
    103103//Compile SymListGraph
    104104//template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
    105 //template void hugo::checkCompileErasableGraph<SymListGraph>(SymListGraph &);
     105//template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
    106106//template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    107107
    108108//Compile FullGraph
    109 template void lemon::concept::checkCompileStaticGraph<FullGraph>(FullGraph &);
     109template void lemon::concept::checkCompileGraph<FullGraph>(FullGraph &);
    110110template
    111111void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
Note: See TracChangeset for help on using the changeset viewer.