equal
deleted
inserted
replaced
16 |
16 |
17 #include<iostream> |
17 #include<iostream> |
18 #include<lemon/concept_check.h> |
18 #include<lemon/concept_check.h> |
19 |
19 |
20 #include<lemon/smart_graph.h> |
20 #include<lemon/smart_graph.h> |
21 #include<lemon/skeletons/graph.h> |
21 #include<lemon/concept/graph.h> |
22 |
22 |
23 #include<lemon/list_graph.h> |
23 #include<lemon/list_graph.h> |
24 #include<lemon/full_graph.h> |
24 #include<lemon/full_graph.h> |
25 #include<lemon/graph_wrapper.h> |
25 #include<lemon/graph_wrapper.h> |
26 |
26 |
33 |
33 |
34 \todo More extensive tests are needed |
34 \todo More extensive tests are needed |
35 */ |
35 */ |
36 |
36 |
37 using namespace lemon; |
37 using namespace lemon; |
38 using namespace lemon::skeleton; |
38 using namespace lemon::concept; |
39 |
39 |
40 |
40 |
41 typedef SmartGraph Graph; |
41 typedef SmartGraph Graph; |
42 |
42 |
43 |
43 |