test/path_test.cc
changeset 2260 4274224f8a7d
parent 2247 269a0dcee70b
child 2335 27aa03cd3121
     1.1 --- a/test/path_test.cc	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/test/path_test.cc	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -19,8 +19,8 @@
     1.4  #include <string>
     1.5  #include <iostream>
     1.6  
     1.7 -#include <lemon/concept/path.h>
     1.8 -#include <lemon/concept/graph.h>
     1.9 +#include <lemon/concepts/path.h>
    1.10 +#include <lemon/concepts/graph.h>
    1.11  
    1.12  #include <lemon/path.h>
    1.13  #include <lemon/list_graph.h>
    1.14 @@ -31,11 +31,11 @@
    1.15  using namespace lemon;
    1.16  
    1.17  void check_concepts() {
    1.18 -  checkConcept<concept::Path<concept::Graph>, 
    1.19 -    concept::Path<concept::Graph> >();
    1.20 -  checkConcept<concept::Path<concept::Graph>, 
    1.21 -    Path<concept::Graph> >();
    1.22 -  checkConcept<concept::Path<ListGraph>, Path<ListGraph> >();
    1.23 +  checkConcept<concepts::Path<concepts::Graph>, 
    1.24 +    concepts::Path<concepts::Graph> >();
    1.25 +  checkConcept<concepts::Path<concepts::Graph>, 
    1.26 +    Path<concepts::Graph> >();
    1.27 +  checkConcept<concepts::Path<ListGraph>, Path<ListGraph> >();
    1.28  }
    1.29  
    1.30  int main() {