equal
deleted
inserted
replaced
5 |
5 |
6 #include <lemon/concept/graph.h> |
6 #include <lemon/concept/graph.h> |
7 #include <lemon/list_graph.h> |
7 #include <lemon/list_graph.h> |
8 #include <lemon/smart_graph.h> |
8 #include <lemon/smart_graph.h> |
9 #include <lemon/full_graph.h> |
9 #include <lemon/full_graph.h> |
|
10 #include <lemon/hypercube_graph.h> |
10 |
11 |
11 #include "test_tools.h" |
12 #include "test_tools.h" |
12 #include "graph_test.h" |
13 #include "graph_test.h" |
13 #include "map_test.h" |
14 #include "map_test.h" |
14 |
15 |
57 checkGraphEdgeMap<SmartGraph>(); |
58 checkGraphEdgeMap<SmartGraph>(); |
58 } |
59 } |
59 { // checking full graph |
60 { // checking full graph |
60 checkConcept<StaticGraph, FullGraph >(); |
61 checkConcept<StaticGraph, FullGraph >(); |
61 } |
62 } |
|
63 { // checking full graph |
|
64 checkConcept<StaticGraph, HyperCubeGraph >(); |
|
65 } |
62 |
66 |
63 std::cout << __FILE__ ": All tests passed.\n"; |
67 std::cout << __FILE__ ": All tests passed.\n"; |
64 |
68 |
65 return 0; |
69 return 0; |
66 } |
70 } |