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/concept/graph.h> |
6 #include <lemon/concepts/graph.h> |
7 #include <lemon/concept/ugraph.h> |
7 #include <lemon/concepts/ugraph.h> |
8 #include <lemon/smart_graph.h> |
8 #include <lemon/smart_graph.h> |
9 |
9 |
10 #include <lemon/edge_set.h> |
10 #include <lemon/edge_set.h> |
11 |
11 |
12 #include "test_tools.h" |
12 #include "test_tools.h" |
13 #include "graph_test.h" |
13 #include "graph_test.h" |
14 #include "map_test.h" |
14 #include "map_test.h" |
15 |
15 |
16 |
16 |
17 using namespace lemon; |
17 using namespace lemon; |
18 using namespace lemon::concept; |
18 using namespace lemon::concepts; |
19 |
19 |
20 typedef SmartGraph RGraph; |
20 typedef SmartGraph RGraph; |
21 |
21 |
22 int main() { |
22 int main() { |
23 { // checking edge_sets |
23 { // checking edge_sets |