Changeset 2260:4274224f8a7d in lemon-0.x for test/path_test.cc
- Timestamp:
- 10/24/06 19:19:16 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/path_test.cc
r2247 r2260 20 20 #include <iostream> 21 21 22 #include <lemon/concept /path.h>23 #include <lemon/concept /graph.h>22 #include <lemon/concepts/path.h> 23 #include <lemon/concepts/graph.h> 24 24 25 25 #include <lemon/path.h> … … 32 32 33 33 void check_concepts() { 34 checkConcept<concept ::Path<concept::Graph>,35 concept ::Path<concept::Graph> >();36 checkConcept<concept ::Path<concept::Graph>,37 Path<concept ::Graph> >();38 checkConcept<concept ::Path<ListGraph>, Path<ListGraph> >();34 checkConcept<concepts::Path<concepts::Graph>, 35 concepts::Path<concepts::Graph> >(); 36 checkConcept<concepts::Path<concepts::Graph>, 37 Path<concepts::Graph> >(); 38 checkConcept<concepts::Path<ListGraph>, Path<ListGraph> >(); 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.