equal
deleted
inserted
replaced
4 // max_flow_demo < dimacs_max_flow_file |
4 // max_flow_demo < dimacs_max_flow_file |
5 |
5 |
6 #include <iostream> |
6 #include <iostream> |
7 #include <fstream> |
7 #include <fstream> |
8 |
8 |
9 #include <hugo/smart_graph.h> |
9 #include <lemon/smart_graph.h> |
10 #include <hugo/list_graph.h> |
10 #include <lemon/list_graph.h> |
11 #include <hugo/dimacs.h> |
11 #include <lemon/dimacs.h> |
12 #include <hugo/time_measure.h> |
12 #include <lemon/time_measure.h> |
13 #include <hugo/preflow.h> |
13 #include <lemon/preflow.h> |
14 #include <augmenting_flow.h> |
14 #include <augmenting_flow.h> |
15 #include <graph_concept.h> |
15 #include <graph_concept.h> |
16 |
16 |
17 using namespace hugo; |
17 using namespace lemon; |
18 |
18 |
19 int main(int, char **) { |
19 int main(int, char **) { |
20 |
20 |
21 typedef ListGraph MutableGraph; |
21 typedef ListGraph MutableGraph; |
22 typedef SmartGraph Graph; |
22 typedef SmartGraph Graph; |