COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for test/graph_factory_test.cc


Ignore:
Timestamp:
10/24/06 19:19:16 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/graph_factory_test.cc

    r2111 r2260  
    1919#include<iostream>
    2020#include<lemon/smart_graph.h>
    21 #include<lemon/concept/graph.h>
    22 #include<lemon/concept/maps.h>
     21#include<lemon/concepts/graph.h>
     22#include<lemon/concepts/maps.h>
    2323#include<lemon/list_graph_base.h>
    2424#include<lemon/full_graph.h>
     
    7171
    7272//Compile Graph
    73 template void lemon::concept::checkCompileGraph<concept::Graph>
    74 (concept::Graph &);
     73template void lemon::concepts::checkCompileGraph<concepts::Graph>
     74(concepts::Graph &);
    7575
    7676template
    77 void lemon::concept::checkCompileGraph<concept::Graph>
    78 (concept::Graph &);
     77void lemon::concepts::checkCompileGraph<concepts::Graph>
     78(concepts::Graph &);
    7979
    8080template
    81 void lemon::concept::checkCompileGraph<concept::Graph>
    82 (concept::Graph &);
     81void lemon::concepts::checkCompileGraph<concepts::Graph>
     82(concepts::Graph &);
    8383
    8484//Compile SmartGraph
    8585template
    86 void lemon::concept::checkCompileGraph<SmartGraph>(SmartGraph &);
     86void lemon::concepts::checkCompileGraph<SmartGraph>(SmartGraph &);
    8787template
    88 void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
     88void lemon::concepts::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    8989
    9090//Compile SymSmartGraph
     
    9494//Compile ListGraph
    9595template
    96 void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
     96void lemon::concepts::checkCompileGraph<ListGraph>(ListGraph &);
    9797template
    98 void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
     98void lemon::concepts::checkCompileGraph<ListGraph>(ListGraph &);
    9999template
    100 void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
     100void lemon::concepts::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    101101
    102102
     
    107107
    108108//Compile FullGraph
    109 template void lemon::concept::checkCompileGraph<FullGraph>(FullGraph &);
     109template void lemon::concepts::checkCompileGraph<FullGraph>(FullGraph &);
    110110template
    111 void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
     111void lemon::concepts::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    112112
    113113
     
    144144  // Some map tests.
    145145  // FIXME: These shouldn't be here.
    146   using namespace concept;
     146  using namespace concepts;
    147147  function_requires< ReadMapConcept< ReadMap<int,int> > >();
    148148  function_requires< WriteMapConcept< WriteMap<int,int> > >();
Note: See TracChangeset for help on using the changeset viewer.