equal
deleted
inserted
replaced
2 #include <iostream> |
2 #include <iostream> |
3 #include <fstream> |
3 #include <fstream> |
4 #include <string> |
4 #include <string> |
5 |
5 |
6 #include <sage_graph.h> |
6 #include <sage_graph.h> |
7 #include <hugo/list_graph.h> |
7 #include <lemon/list_graph.h> |
8 #include <hugo/smart_graph.h> |
8 #include <lemon/smart_graph.h> |
9 #include <hugo/dimacs.h> |
9 #include <lemon/dimacs.h> |
10 #include <hugo/max_flow.h> |
10 #include <lemon/max_flow.h> |
11 #include <augmenting_flow.h> |
11 #include <augmenting_flow.h> |
12 #include <hugo/time_measure.h> |
12 #include <lemon/time_measure.h> |
13 #include <for_each_macros.h> |
13 #include <for_each_macros.h> |
14 |
14 |
15 using namespace hugo; |
15 using namespace lemon; |
16 |
16 |
17 // Use a DIMACS max flow file as stdin. |
17 // Use a DIMACS max flow file as stdin. |
18 // read_dimacs_demo dimacs_max_flow_file |
18 // read_dimacs_demo dimacs_max_flow_file |
19 |
19 |
20 int main(int, char** argv) { |
20 int main(int, char** argv) { |