equal
deleted
inserted
replaced
1 // -*- c++ -*- |
1 // -*- c++ -*- |
2 |
2 |
3 #include <iostream> |
3 #include <iostream> |
4 #include <vector> |
4 #include <vector> |
5 |
5 |
6 #include <lemon/skeletons/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 |
10 |
11 #include "test_tools.h" |
11 #include "test_tools.h" |
12 #include "graph_test.h" |
12 #include "graph_test.h" |
13 #include "map_test.h" |
13 #include "map_test.h" |
14 |
14 |
15 |
15 |
16 using namespace lemon; |
16 using namespace lemon; |
17 using namespace lemon::skeleton; |
17 using namespace lemon::concept; |
18 |
18 |
19 |
19 |
20 int main() { |
20 int main() { |
21 ///\file |
21 ///\file |
22 { // checking graph components |
22 { // checking graph components |