test/graph_factory_test.cc
changeset 2260 4274224f8a7d
parent 2111 ea1fa1bc3f6d
child 2391 14a343be7a5a
     1.1 --- a/test/graph_factory_test.cc	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/test/graph_factory_test.cc	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -18,8 +18,8 @@
     1.4  
     1.5  #include<iostream>
     1.6  #include<lemon/smart_graph.h>
     1.7 -#include<lemon/concept/graph.h>
     1.8 -#include<lemon/concept/maps.h>
     1.9 +#include<lemon/concepts/graph.h>
    1.10 +#include<lemon/concepts/maps.h>
    1.11  #include<lemon/list_graph_base.h>
    1.12  #include<lemon/full_graph.h>
    1.13  
    1.14 @@ -70,22 +70,22 @@
    1.15  }
    1.16  
    1.17  //Compile Graph
    1.18 -template void lemon::concept::checkCompileGraph<concept::Graph>
    1.19 -(concept::Graph &);
    1.20 +template void lemon::concepts::checkCompileGraph<concepts::Graph>
    1.21 +(concepts::Graph &);
    1.22  
    1.23  template
    1.24 -void lemon::concept::checkCompileGraph<concept::Graph>
    1.25 -(concept::Graph &);
    1.26 +void lemon::concepts::checkCompileGraph<concepts::Graph>
    1.27 +(concepts::Graph &);
    1.28  
    1.29  template
    1.30 -void lemon::concept::checkCompileGraph<concept::Graph>
    1.31 -(concept::Graph &);
    1.32 +void lemon::concepts::checkCompileGraph<concepts::Graph>
    1.33 +(concepts::Graph &);
    1.34  
    1.35  //Compile SmartGraph
    1.36  template
    1.37 -void lemon::concept::checkCompileGraph<SmartGraph>(SmartGraph &);
    1.38 +void lemon::concepts::checkCompileGraph<SmartGraph>(SmartGraph &);
    1.39  template
    1.40 -void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.41 +void lemon::concepts::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    1.42  
    1.43  //Compile SymSmartGraph
    1.44  //template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    1.45 @@ -93,11 +93,11 @@
    1.46  
    1.47  //Compile ListGraph
    1.48  template
    1.49 -void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    1.50 +void lemon::concepts::checkCompileGraph<ListGraph>(ListGraph &);
    1.51  template
    1.52 -void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    1.53 +void lemon::concepts::checkCompileGraph<ListGraph>(ListGraph &);
    1.54  template
    1.55 -void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.56 +void lemon::concepts::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    1.57  
    1.58  
    1.59  //Compile SymListGraph
    1.60 @@ -106,9 +106,9 @@
    1.61  //template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.62  
    1.63  //Compile FullGraph
    1.64 -template void lemon::concept::checkCompileGraph<FullGraph>(FullGraph &);
    1.65 +template void lemon::concepts::checkCompileGraph<FullGraph>(FullGraph &);
    1.66  template
    1.67 -void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.68 +void lemon::concepts::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    1.69  
    1.70  
    1.71  int main() 
    1.72 @@ -143,7 +143,7 @@
    1.73  
    1.74    // Some map tests.
    1.75    // FIXME: These shouldn't be here.
    1.76 -  using namespace concept;
    1.77 +  using namespace concepts;
    1.78    function_requires< ReadMapConcept< ReadMap<int,int> > >();
    1.79    function_requires< WriteMapConcept< WriteMap<int,int> > >();
    1.80    function_requires< ReadWriteMapConcept< ReadWriteMap<int,int> > >();