equal
deleted
inserted
replaced
15 */ |
15 */ |
16 |
16 |
17 #include "test_tools.h" |
17 #include "test_tools.h" |
18 #include <lemon/smart_graph.h> |
18 #include <lemon/smart_graph.h> |
19 #include <lemon/bfs.h> |
19 #include <lemon/bfs.h> |
20 #include<lemon/skeletons/graph.h> |
20 #include<lemon/concept/graph.h> |
21 |
21 |
22 using namespace lemon; |
22 using namespace lemon; |
23 |
23 |
24 const int PET_SIZE =5; |
24 const int PET_SIZE =5; |
25 |
25 |
26 |
26 |
27 void check_Bfs_Compile() |
27 void check_Bfs_Compile() |
28 { |
28 { |
29 typedef skeleton::StaticGraph Graph; |
29 typedef concept::StaticGraph Graph; |
30 |
30 |
31 typedef Graph::Edge Edge; |
31 typedef Graph::Edge Edge; |
32 typedef Graph::Node Node; |
32 typedef Graph::Node Node; |
33 typedef Graph::EdgeIt EdgeIt; |
33 typedef Graph::EdgeIt EdgeIt; |
34 typedef Graph::NodeIt NodeIt; |
34 typedef Graph::NodeIt NodeIt; |