COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
11/04/04 21:24:59 (20 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
Message:

skeleton(s) -> concept renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_factory_test.cc

    r946 r959  
    1717#include<iostream>
    1818#include<lemon/smart_graph.h>
    19 #include<lemon/skeletons/graph.h>
    20 #include<lemon/skeletons/maps.h>
     19#include<lemon/concept/graph.h>
     20#include<lemon/concept/maps.h>
    2121#include<lemon/list_graph_base.h>
    2222#include<lemon/full_graph.h>
     
    6969
    7070//Compile Graph
    71 template void lemon::skeleton::checkCompileStaticGraph<skeleton::StaticGraph>
    72 (skeleton::StaticGraph &);
     71template void lemon::concept::checkCompileStaticGraph<concept::StaticGraph>
     72(concept::StaticGraph &);
    7373
    7474template
    75 void lemon::skeleton::checkCompileExtendableGraph<skeleton::ExtendableGraph>
    76 (skeleton::ExtendableGraph &);
     75void lemon::concept::checkCompileExtendableGraph<concept::ExtendableGraph>
     76(concept::ExtendableGraph &);
    7777
    7878template
    79 void lemon::skeleton::checkCompileErasableGraph<skeleton::ErasableGraph>
    80 (skeleton::ErasableGraph &);
     79void lemon::concept::checkCompileErasableGraph<concept::ErasableGraph>
     80(concept::ErasableGraph &);
    8181
    8282//Compile SmartGraph
    8383template
    84 void lemon::skeleton::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
     84void lemon::concept::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
    8585template
    86 void lemon::skeleton::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
     86void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    8787
    8888//Compile SymSmartGraph
     
    9292//Compile ListGraph
    9393template
    94 void lemon::skeleton::checkCompileExtendableGraph<ListGraph>(ListGraph &);
     94void lemon::concept::checkCompileExtendableGraph<ListGraph>(ListGraph &);
    9595template
    96 void lemon::skeleton::checkCompileErasableGraph<ListGraph>(ListGraph &);
     96void lemon::concept::checkCompileErasableGraph<ListGraph>(ListGraph &);
    9797template
    98 void lemon::skeleton::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
     98void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    9999
    100100
     
    105105
    106106//Compile FullGraph
    107 template void lemon::skeleton::checkCompileStaticGraph<FullGraph>(FullGraph &);
     107template void lemon::concept::checkCompileStaticGraph<FullGraph>(FullGraph &);
    108108template
    109 void lemon::skeleton::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
     109void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    110110
    111111
     
    142142  // Some map tests.
    143143  // FIXME: These shouldn't be here.
    144   using namespace skeleton;
     144  using namespace concept;
    145145  function_requires< ReadMapConcept< ReadMap<int,int> > >();
    146146  function_requires< WriteMapConcept< WriteMap<int,int> > >();
Note: See TracChangeset for help on using the changeset viewer.