equal
deleted
inserted
replaced
17 */ |
17 */ |
18 |
18 |
19 #include <iostream> |
19 #include <iostream> |
20 #include <vector> |
20 #include <vector> |
21 |
21 |
22 #include <lemon/concept/graph.h> |
22 #include <lemon/concepts/graph.h> |
23 #include <lemon/list_graph.h> |
23 #include <lemon/list_graph.h> |
24 #include <lemon/smart_graph.h> |
24 #include <lemon/smart_graph.h> |
25 #include <lemon/full_graph.h> |
25 #include <lemon/full_graph.h> |
26 #include <lemon/hypercube_graph.h> |
26 #include <lemon/hypercube_graph.h> |
27 |
27 |
29 #include "graph_test.h" |
29 #include "graph_test.h" |
30 #include "map_test.h" |
30 #include "map_test.h" |
31 |
31 |
32 |
32 |
33 using namespace lemon; |
33 using namespace lemon; |
34 using namespace lemon::concept; |
34 using namespace lemon::concepts; |
35 |
35 |
36 |
36 |
37 int main() { |
37 int main() { |
38 { // checking graph components |
38 { // checking graph components |
39 checkConcept<BaseGraphComponent, BaseGraphComponent >(); |
39 checkConcept<BaseGraphComponent, BaseGraphComponent >(); |