.
4 #include <list_graph.hh>
6 #include <preflow_push_max_flow.h>
7 #include <preflow_push_hl.h>
8 #include <time_measure.h>
10 using namespace marci;
12 // Use a DIMACS max flow file as stdin.
13 // read_dimacs_demo < dimacs_max_flow_file
14 int main(int, char **) {
15 typedef ListGraph::NodeIt NodeIt;
16 typedef ListGraph::EachEdgeIt EachEdgeIt;
20 ListGraph::EdgeMap<int> cap(G);
21 readDimacsMaxFlow(std::cin, G, s, t, cap);
24 std::cout << "preflow demo (preflow_push_max_flow by JACINT)..." << std::endl;
25 //ListGraph::EdgeMap<int> flow(G); //0 flow
27 double pre_time=currTime();
28 preflow_push_max_flow<ListGraph, int> max_flow_test(G, s, t, cap);
30 ListGraph::NodeMap<bool> cut=max_flow_test.mincut();
32 for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
33 if (cut.get(G.tail(e)) && !cut.get(G.head(e))) cut_value+=cap.get(e);
35 double post_time=currTime();
36 //std::cout << "maximum flow: "<< std::endl;
37 //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
38 // std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
40 //std::cout<<std::endl;
41 std::cout << "elapsed time: " << post_time-pre_time << " sec"<< std::endl;
42 std::cout << "flow value: "<< max_flow_test.maxflow() << std::endl;
43 std::cout << "cut value: "<< cut_value << std::endl;
47 std::cout << "preflow demo (preflow_push_hl by JACINT)..." << std::endl;
48 //ListGraph::EdgeMap<int> flow(G); //0 flow
50 double pre_time=currTime();
51 preflow_push_hl<ListGraph, int> max_flow_test(G, s, t, cap);
53 ListGraph::NodeMap<bool> cut=max_flow_test.mincut();
55 for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
56 if (cut.get(G.tail(e)) && !cut.get(G.head(e))) cut_value+=cap.get(e);
58 double post_time=currTime();
59 //std::cout << "maximum flow: "<< std::endl;
60 //for(EachEdgeIt e=G.first<EachEdgeIt>(); e.valid(); ++e) {
61 // std::cout<<"("<<G.tail(e)<< "-"<<flow.get(e)<<"->"<<G.head(e)<<") ";
63 //std::cout<<std::endl;
64 std::cout << "elapsed time: " << post_time-pre_time << " sec"<< std::endl;
65 std::cout << "flow value: "<< max_flow_test.maxflow() << std::endl;
66 std::cout << "cut value: "<< cut_value << std::endl;