equal
deleted
inserted
replaced
229 std::cout << "maximum flow: "<< std::endl; |
229 std::cout << "maximum flow: "<< std::endl; |
230 for(EachEdgeIt e=flowG.template first<EachEdgeIt>(); e.valid(); ++e) { |
230 for(EachEdgeIt e=flowG.template first<EachEdgeIt>(); e.valid(); ++e) { |
231 std::cout<<"("<<flowG.tail(e)<< "-"<<flow.get(e)<<"->"<<flowG.head(e)<<") "; |
231 std::cout<<"("<<flowG.tail(e)<< "-"<<flow.get(e)<<"->"<<flowG.head(e)<<") "; |
232 } |
232 } |
233 std::cout<<std::endl; |
233 std::cout<<std::endl; |
|
234 std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl; |
234 |
235 |
235 return 0; |
236 return 0; |
236 } |
237 } |