COIN-OR::LEMON - Graph Library

Changeset 938:70e2886211d5 in lemon-0.x for src/test/graph_test.cc


Ignore:
Timestamp:
10/05/04 11:41:05 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1266
Message:

Many of ckeckCompileXYZ()'s are now in the corresponding skeleton headers.
(Tests for Symmetric Graphs are still to be moved)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_test.cc

    r937 r938  
    6868
    6969//Compile Graph
    70 template void lemon::checkCompileStaticGraph<skeleton::StaticGraph>
     70template void lemon::skeleton::checkCompileStaticGraph<skeleton::StaticGraph>
    7171(skeleton::StaticGraph &);
    7272
    73 template void lemon::checkCompileGraph<skeleton::ExtendableGraph>
     73template
     74void lemon::skeleton::checkCompileExtendableGraph<skeleton::ExtendableGraph>
    7475(skeleton::ExtendableGraph &);
    7576
    76 template void lemon::checkCompileErasableGraph<skeleton::ErasableGraph>
     77template
     78void lemon::skeleton::checkCompileErasableGraph<skeleton::ErasableGraph>
    7779(skeleton::ErasableGraph &);
    7880
    7981//Compile SmartGraph
    80 template void lemon::checkCompileGraph<SmartGraph>(SmartGraph &);
    81 template void lemon::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
     82template
     83void lemon::skeleton::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
     84template
     85void lemon::skeleton::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    8286
    8387//Compile SymSmartGraph
     
    8690
    8791//Compile ListGraph
    88 template void lemon::checkCompileGraph<ListGraph>(ListGraph &);
    89 template void lemon::checkCompileErasableGraph<ListGraph>(ListGraph &);
    90 template void lemon::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
     92template
     93void lemon::skeleton::checkCompileExtendableGraph<ListGraph>(ListGraph &);
     94template
     95void lemon::skeleton::checkCompileErasableGraph<ListGraph>(ListGraph &);
     96template
     97void lemon::skeleton::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    9198
    9299
     
    97104
    98105//Compile FullGraph
    99 template void lemon::checkCompileStaticGraph<FullGraph>(FullGraph &);
    100 template void lemon::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
     106template void lemon::skeleton::checkCompileStaticGraph<FullGraph>(FullGraph &);
     107template
     108void lemon::skeleton::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    101109
    102110//Compile EdgeSet <ListGraph>
    103 template void lemon::checkCompileGraph<EdgeSet <ListGraph> >
     111template void lemon::skeleton::checkCompileExtendableGraph<EdgeSet <ListGraph> >
    104112(EdgeSet <ListGraph> &);
    105 template void lemon::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
     113template void lemon::skeleton::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    106114(EdgeSet <ListGraph> &);
    107 template void lemon::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
     115template void lemon::skeleton::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    108116(EdgeSet <ListGraph> &);
    109117
    110118//Compile EdgeSet <NodeSet>
    111 template void lemon::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
    112 template void lemon::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
     119template void lemon::skeleton::checkCompileExtendableGraph<EdgeSet <NodeSet> >
    113120(EdgeSet <NodeSet> &);
    114 template void lemon::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
     121template void lemon::skeleton::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
     122(EdgeSet <NodeSet> &);
     123template void lemon::skeleton::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    115124(EdgeSet <NodeSet> &);
    116125
Note: See TracChangeset for help on using the changeset viewer.