equal
deleted
inserted
replaced
2 #include <iostream> |
2 #include <iostream> |
3 #include <fstream> |
3 #include <fstream> |
4 #include <vector> |
4 #include <vector> |
5 |
5 |
6 //#include <sage_graph.h> |
6 //#include <sage_graph.h> |
7 #include <hugo/smart_graph.h> |
7 #include <lemon/smart_graph.h> |
8 //#include <dimacs.h> |
8 //#include <dimacs.h> |
9 #include <hugo/time_measure.h> |
9 #include <lemon/time_measure.h> |
10 //#include <for_each_macros.h> |
10 //#include <for_each_macros.h> |
11 #include <bfs_dfs.h> |
11 #include <bfs_dfs.h> |
12 #include <hugo/graph_wrapper.h> |
12 #include <lemon/graph_wrapper.h> |
13 #include <bipartite_graph_wrapper.h> |
13 #include <bipartite_graph_wrapper.h> |
14 #include <hugo/maps.h> |
14 #include <lemon/maps.h> |
15 #include <hugo/preflow.h> |
15 #include <lemon/preflow.h> |
16 #include <augmenting_flow.h> |
16 #include <augmenting_flow.h> |
17 |
17 |
18 using std::cout; |
18 using std::cout; |
19 using std::endl; |
19 using std::endl; |
20 |
20 |
21 using namespace hugo; |
21 using namespace lemon; |
22 |
22 |
23 int main() { |
23 int main() { |
24 //typedef UndirSageGraph Graph; |
24 //typedef UndirSageGraph Graph; |
25 typedef SmartGraph Graph; |
25 typedef SmartGraph Graph; |
26 typedef Graph::Node Node; |
26 typedef Graph::Node Node; |