4 #include <list_graph.hh>
6 #include <edmonds_karp.hh>
7 #include <time_measure.h>
11 // Use a DIMACS max flow file as stdin.
12 // read_dimacs_demo < dimacs_max_flow_file
30 int main(int, char **) {
31 typedef ListGraph::NodeIt NodeIt;
32 typedef ListGraph::EachEdgeIt EachEdgeIt;
40 std::cout << &zize << " " << sizeof(mize) << sizeof(Tize) << std::endl;
41 std::cout << sizeof(bize) << std::endl;
45 std::cout << sizeof(k) << std::endl;
50 ListGraph::EdgeMap<int> cap(G);
51 readDimacsMaxFlow(std::cin, G, s, t, cap);
54 std::cout << "edmonds karp demo (blocking flow augmentation)..." << std::endl;
55 ListGraph::EdgeMap<int> flow(G); //0 flow
57 double pre_time=currTime();
58 MaxFlow<ListGraph, int, ListGraph::EdgeMap<int>, ListGraph::EdgeMap<int> > max_flow_test(G, s, t, flow, cap);
59 //max_flow_test.augmentWithBlockingFlow<ListGraph>();
61 while (max_flow_test.augmentOnBlockingFlow<ListGraph>()) { ++i; }
62 double post_time=currTime();
64 //std::cout << "maximum flow: "<< std::endl;
65 //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
66 // std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
68 //std::cout<<std::endl;
69 std::cout << "elapsed time: " << post_time-pre_time << " sec"<< std::endl;
70 std::cout << "number of augmentation phases: " << i << std::endl;
71 std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl;
75 std::cout << "edmonds karp demo (shortest path augmentation)..." << std::endl;
76 ListGraph::EdgeMap<int> flow(G); //0 flow
78 double pre_time=currTime();
79 MaxFlow<ListGraph, int, ListGraph::EdgeMap<int>, ListGraph::EdgeMap<int> > max_flow_test(G, s, t, flow, cap);
80 //max_flow_test.augmentWithBlockingFlow<ListGraph>();
82 while (max_flow_test.augmentOnShortestPath()) { ++i; }
83 double post_time=currTime();
85 //std::cout << "maximum flow: "<< std::endl;
86 //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
87 // std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
89 //std::cout<<std::endl;
90 std::cout << "elapsed time: " << post_time-pre_time << " sec"<< std::endl;
91 std::cout << "number of augmentation phases: " << i << std::endl;
92 std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl;