equal
deleted
inserted
replaced
70 |
70 |
71 |
71 |
72 MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> > |
72 MaxFlow<stGW, int, ConstMap<stGW::Edge, int>, stGW::EdgeMap<int> > |
73 max_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow); |
73 max_flow_test(stgw, stgw.S_NODE, stgw.T_NODE, const1map, flow); |
74 max_flow_test.augmentOnShortestPath(); |
74 max_flow_test.augmentOnShortestPath(); |
|
75 max_flow_test.augmentOnShortestPath(); |
|
76 |
|
77 std::cout << max_flow_test.flowValue() << std::endl; |
75 |
78 |
76 return 0; |
79 return 0; |
77 } |
80 } |