equal
deleted
inserted
replaced
1 // -*- c++ -*- |
1 // -*- c++ -*- |
2 #include <iostream> |
2 #include <iostream> |
3 #include <fstream> |
3 #include <fstream> |
4 |
4 |
5 #include <sage_graph.h> |
5 #include <sage_graph.h> |
6 #include <hugo/smart_graph.h> |
6 #include <lemon/smart_graph.h> |
7 #include <hugo/dimacs.h> |
7 #include <lemon/dimacs.h> |
8 //#include <hugo/time_measure.h> |
8 //#include <lemon/time_measure.h> |
9 //#include <graph_wrapper.h> |
9 //#include <graph_wrapper.h> |
10 #include <hugo/max_flow.h> |
10 #include <lemon/max_flow.h> |
11 //#include <preflow_res.h> |
11 //#include <preflow_res.h> |
12 #include <for_each_macros.h> |
12 #include <for_each_macros.h> |
13 #include <graph_concept.h> |
13 #include <graph_concept.h> |
14 |
14 |
15 using std::cout; |
15 using std::cout; |
16 using std::endl; |
16 using std::endl; |
17 |
17 |
18 using namespace hugo; |
18 using namespace lemon; |
19 |
19 |
20 // Use a DIMACS min cost flow file as stdin. |
20 // Use a DIMACS min cost flow file as stdin. |
21 // read_dimacs_demo < dimacs_max_flow_file |
21 // read_dimacs_demo < dimacs_max_flow_file |
22 |
22 |
23 int main(int, char **) { |
23 int main(int, char **) { |