equal
deleted
inserted
replaced
74 std::cout << "They are equal! " <<std::endl<< std::endl<<"\n"; |
74 std::cout << "They are equal! " <<std::endl<< std::endl<<"\n"; |
75 |
75 |
76 /* |
76 /* |
77 |
77 |
78 Graph::EdgeMap<int> flow2(G,0); |
78 Graph::EdgeMap<int> flow2(G,0); |
79 std::cout << "Calling resetFlow() " << std::endl |
79 std::cout << "Calling setFlow() " << std::endl |
80 << ts << std::endl; |
80 << ts << std::endl; |
81 max_flow_test.resetFlow(flow2); |
81 max_flow_test.setFlow(flow2); |
82 ts.reset(); |
82 ts.reset(); |
83 max_flow_test.preflow(max_flow_test.PRE_FLOW); |
83 max_flow_test.preflow(max_flow_test.PRE_FLOW); |
84 std::cout << "Elapsed time of preflow(PRE_FLOW) starting from the zero flow: " << std::endl |
84 std::cout << "Elapsed time of preflow(PRE_FLOW) starting from the zero flow: " << std::endl |
85 << ts << std::endl; |
85 << ts << std::endl; |
86 |
86 |