COIN-OR::LEMON - Graph Library

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_wrapper_test.cc

    r933 r938  
    3939//Compile GraphWrapper
    4040typedef GraphWrapper<Graph> GW;
    41 template void checkCompileStaticGraph<GW>(GW &);
     41template void lemon::skeleton::checkCompileStaticGraph<GW>(GW &);
    4242
    4343//Compile RevGraphWrapper
    4444typedef RevGraphWrapper<Graph> RevGW;
    45 template void checkCompileStaticGraph<RevGW>(RevGW &);
     45template void lemon::skeleton::checkCompileStaticGraph<RevGW>(RevGW &);
    4646
    4747//Compile SubGraphWrapper
    4848typedef SubGraphWrapper<Graph, Graph::NodeMap<bool>,
    4949                        Graph::EdgeMap<bool> > SubGW;
    50 template void checkCompileStaticGraph<SubGW>(SubGW &);
     50template void lemon::skeleton::checkCompileStaticGraph<SubGW>(SubGW &);
    5151
    5252//Compile NodeSubGraphWrapper
    5353typedef NodeSubGraphWrapper<Graph, Graph::NodeMap<bool> > NodeSubGW;
    54 template void checkCompileStaticGraph<NodeSubGW>(NodeSubGW &);
     54template void lemon::skeleton::checkCompileStaticGraph<NodeSubGW>(NodeSubGW &);
    5555
    5656//Compile EdgeSubGraphWrapper
    5757typedef EdgeSubGraphWrapper<Graph, Graph::EdgeMap<bool> > EdgeSubGW;
    58 template void checkCompileStaticGraph<EdgeSubGW>(EdgeSubGW &);
     58template void lemon::skeleton::checkCompileStaticGraph<EdgeSubGW>(EdgeSubGW &);
    5959
    6060//Compile UndirGraphWrapper
     
    7070typedef SubBidirGraphWrapper<Graph, Graph::EdgeMap<bool>,
    7171                             Graph::EdgeMap<bool> > SubBDGW;
    72 template void checkCompileStaticGraph<SubBDGW>(SubBDGW &);
     72template void lemon::skeleton::checkCompileStaticGraph<SubBDGW>(SubBDGW &);
    7373
    7474//Compile BidirGraphWrapper
    7575typedef BidirGraphWrapper<Graph> BidirGW;
    76 template void checkCompileStaticGraph<BidirGW>(BidirGW &);
     76template void lemon::skeleton::checkCompileStaticGraph<BidirGW>(BidirGW &);
    7777
    7878//Compile BidirGraph
    7979typedef BidirGraph<Graph> BidirG;
    80 template void checkCompileStaticGraph<BidirG>(BidirG &);
     80template void lemon::skeleton::checkCompileStaticGraph<BidirG>(BidirG &);
    8181
    8282//Compile ResGraphWrapper
    8383typedef ResGraphWrapper<Graph, int, Graph::EdgeMap<int>,
    8484                        Graph::EdgeMap<int> > ResGW;
    85 template void checkCompileStaticGraph<ResGW>(ResGW &);
     85template void lemon::skeleton::checkCompileStaticGraph<ResGW>(ResGW &);
    8686
    8787//Compile ErasingFirstGraphWrapper
    8888typedef ErasingFirstGraphWrapper<Graph, Graph::NodeMap<Graph::Edge> > ErasingFirstGW;
    89 template void checkCompileStaticGraph<ErasingFirstGW>(ErasingFirstGW &);
     89template
     90void lemon::skeleton::checkCompileStaticGraph<ErasingFirstGW>(ErasingFirstGW &);
    9091
    9192
Note: See TracChangeset for help on using the changeset viewer.