.
9 #include <bfs_iterator.h>
14 template<typename Graph, typename Number, typename FlowMap, typename CapacityMap>
17 typedef typename Graph::Node Node;
18 typedef typename Graph::NodeIt NodeIt;
20 typedef typename Graph::SymEdgeIt OldSymEdgeIt;
23 const CapacityMap& capacity;
25 ResGraph(const Graph& _G, FlowMap& _flow,
26 const CapacityMap& _capacity) :
27 G(_G), flow(_flow), capacity(_capacity) { }
32 friend class OutEdgeIt;
35 friend class ResGraph<Graph, Number, FlowMap, CapacityMap>;
37 const ResGraph<Graph, Number, FlowMap, CapacityMap>* resG;
41 //Edge(const Edge& e) : resG(e.resG), sym(e.sym) { }
43 if (resG->G.aNode(sym)==resG->G.tail(sym)) {
44 return (resG->capacity.get(sym)-resG->flow.get(sym));
46 return (resG->flow.get(sym));
49 bool valid() const { return sym.valid(); }
50 void augment(Number a) const {
51 if (resG->G.aNode(sym)==resG->G.tail(sym)) {
52 resG->flow.set(sym, resG->flow.get(sym)+a);
55 resG->flow.set(sym, resG->flow.get(sym)-a);
61 class OutEdgeIt : public Edge {
62 friend class ResGraph<Graph, Number, FlowMap, CapacityMap>;
65 //OutEdgeIt(const OutEdgeIt& e) { resG=e.resG; sym=e.sym; }
67 OutEdgeIt(const ResGraph<Graph, Number, FlowMap, CapacityMap>& _resG, Node v) {
69 sym=resG->G.template first<OldSymEdgeIt>(v);
70 while( sym.valid() && !(free()>0) ) { ++sym; }
73 OutEdgeIt& operator++() {
75 while( sym.valid() && !(free()>0) ) { ++sym; }
80 void /*getF*/first(OutEdgeIt& e, Node v) const {
81 e=OutEdgeIt(*this, v);
83 void /*getF*/first(NodeIt& v) const { G./*getF*/first(v); }
85 template< typename It >
92 template< typename It >
93 It first(Node v) const {
99 Node tail(Edge e) const { return G.aNode(e.sym); }
100 Node head(Edge e) const { return G.bNode(e.sym); }
102 Node aNode(OutEdgeIt e) const { return G.aNode(e.sym); }
103 Node bNode(OutEdgeIt e) const { return G.bNode(e.sym); }
105 int id(Node v) const { return G.id(v); }
107 template <typename S>
109 typename Graph::NodeMap<S> node_map;
111 NodeMap(const ResGraph<Graph, Number, FlowMap, CapacityMap>& _G) : node_map(_G.G) { }
112 NodeMap(const ResGraph<Graph, Number, FlowMap, CapacityMap>& _G, S a) : node_map(_G.G, a) { }
113 void set(Node nit, S a) { node_map.set(nit, a); }
114 S get(Node nit) const { return node_map.get(nit); }
115 S& operator[](Node nit) { return node_map[nit]; }
116 const S& operator[](Node nit) const { return node_map[nit]; }
122 template<typename Graph, typename Number, typename FlowMap, typename CapacityMap>
125 typedef typename Graph::Node Node;
126 typedef typename Graph::NodeIt NodeIt;
128 //typedef typename Graph::SymEdgeIt OldSymEdgeIt;
129 typedef typename Graph::OutEdgeIt OldOutEdgeIt;
130 typedef typename Graph::InEdgeIt OldInEdgeIt;
134 const CapacityMap& capacity;
136 ResGraph2(const Graph& _G, FlowMap& _flow,
137 const CapacityMap& _capacity) :
138 G(_G), flow(_flow), capacity(_capacity) { }
143 friend class OutEdgeIt;
146 friend class ResGraph2<Graph, Number, FlowMap, CapacityMap>;
148 const ResGraph2<Graph, Number, FlowMap, CapacityMap>* resG;
152 bool out_or_in; //true, iff out
154 Edge() : out_or_in(true) { }
155 Number free() const {
157 return (resG->capacity.get(out)-resG->flow.get(out));
159 return (resG->flow.get(in));
163 return out_or_in && out.valid() || in.valid(); }
164 void augment(Number a) const {
166 resG->flow.set(out, resG->flow.get(out)+a);
168 resG->flow.set(in, resG->flow.get(in)-a);
173 class OutEdgeIt : public Edge {
174 friend class ResGraph2<Graph, Number, FlowMap, CapacityMap>;
178 OutEdgeIt(const ResGraph2<Graph, Number, FlowMap, CapacityMap>& _resG, Node v) {
180 out=resG->G.template first<OldOutEdgeIt>(v);
181 while( out.valid() && !(free()>0) ) { ++out; }
184 in=resG->G.template first<OldInEdgeIt>(v);
185 while( in.valid() && !(free()>0) ) { ++in; }
189 OutEdgeIt& operator++() {
191 Node v=resG->G.aNode(out);
193 while( out.valid() && !(free()>0) ) { ++out; }
196 in=resG->G.template first<OldInEdgeIt>(v);
197 while( in.valid() && !(free()>0) ) { ++in; }
201 while( in.valid() && !(free()>0) ) { ++in; }
207 void /*getF*/first(OutEdgeIt& e, Node v) const {
208 e=OutEdgeIt(*this, v);
210 void /*getF*/first(NodeIt& v) const { G./*getF*/first(v); }
212 template< typename It >
219 template< typename It >
220 It first(Node v) const {
226 Node tail(Edge e) const {
227 return ((e.out_or_in) ? G.aNode(e.out) : G.aNode(e.in)); }
228 Node head(Edge e) const {
229 return ((e.out_or_in) ? G.bNode(e.out) : G.bNode(e.in)); }
231 Node aNode(OutEdgeIt e) const {
232 return ((e.out_or_in) ? G.aNode(e.out) : G.aNode(e.in)); }
233 Node bNode(OutEdgeIt e) const {
234 return ((e.out_or_in) ? G.bNode(e.out) : G.bNode(e.in)); }
236 int id(Node v) const { return G.id(v); }
238 template <typename S>
240 typename Graph::NodeMap<S> node_map;
242 NodeMap(const ResGraph2<Graph, Number, FlowMap, CapacityMap>& _G) : node_map(_G.G) { }
243 NodeMap(const ResGraph2<Graph, Number, FlowMap, CapacityMap>& _G, S a) : node_map(_G.G, a) { }
244 void set(Node nit, S a) { node_map.set(nit, a); }
245 S get(Node nit) const { return node_map.get(nit); }
250 template <typename Graph, typename Number, typename FlowMap, typename CapacityMap>
253 typedef typename Graph::Node Node;
254 typedef typename Graph::Edge Edge;
255 typedef typename Graph::EdgeIt EdgeIt;
256 typedef typename Graph::OutEdgeIt OutEdgeIt;
257 typedef typename Graph::InEdgeIt InEdgeIt;
264 const CapacityMap* capacity;
265 typedef ResGraphWrapper<Graph, Number, FlowMap, CapacityMap > AugGraph;
266 typedef typename AugGraph::OutEdgeIt AugOutEdgeIt;
267 typedef typename AugGraph::Edge AugEdge;
270 MaxFlow(const Graph& _G, Node _s, Node _t, FlowMap& _flow, const CapacityMap& _capacity) :
271 G(&_G), s(_s), t(_t), flow(&_flow), capacity(&_capacity) { }
272 bool augmentOnShortestPath() {
273 AugGraph res_graph(*G, *flow, *capacity);
276 typedef typename AugGraph::NodeMap<bool> ReachedMap;
277 BfsIterator5< AugGraph, /*AugOutEdgeIt,*/ ReachedMap > res_bfs(res_graph);
278 res_bfs.pushAndSetReached(s);
280 typename AugGraph::NodeMap<AugEdge> pred(res_graph);
281 pred.set(s, AugEdge(INVALID));
283 typename AugGraph::NodeMap<Number> free(res_graph);
285 //searching for augmenting path
286 while ( !res_bfs.finished() ) {
287 AugOutEdgeIt e=res_bfs;
288 if (res_graph.valid(e) && res_bfs.isBNodeNewlyReached()) {
289 Node v=res_graph.tail(e);
290 Node w=res_graph.head(e);
292 if (res_graph.valid(pred.get(v))) {
293 free.set(w, std::min(free.get(v), res_graph.free(e)));
295 free.set(w, res_graph.free(e));
297 if (res_graph.head(e)==t) { _augment=true; break; }
301 } //end of searching augmenting path
305 Number augment_value=free.get(t);
306 while (res_graph.valid(pred.get(n))) {
307 AugEdge e=pred.get(n);
308 res_graph.augment(e, augment_value);
316 template<typename MutableGraph> bool augmentOnBlockingFlow() {
319 AugGraph res_graph(*G, *flow, *capacity);
321 typedef typename AugGraph::NodeMap<bool> ReachedMap;
322 BfsIterator4< AugGraph, AugOutEdgeIt, ReachedMap > bfs(res_graph);
324 bfs.pushAndSetReached(s);
325 typename AugGraph::NodeMap<int> dist(res_graph); //filled up with 0's
326 while ( !bfs.finished() ) {
328 if (res_graph.valid(e) && bfs.isBNodeNewlyReached()) {
329 dist.set(res_graph.head(e), dist.get(res_graph.tail(e))+1);
333 } //computing distances from s in the residual graph
336 typename AugGraph::NodeMap<typename MutableGraph::Node>
337 res_graph_to_F(res_graph);
338 for(typename AugGraph::NodeIt n=res_graph.template first<typename AugGraph::NodeIt>(); res_graph.valid(n); res_graph.next(n)) {
339 res_graph_to_F.set(n, F.addNode());
342 typename MutableGraph::Node sF=res_graph_to_F.get(s);
343 typename MutableGraph::Node tF=res_graph_to_F.get(t);
345 typename MutableGraph::EdgeMap<AugEdge> original_edge(F);
346 typename MutableGraph::EdgeMap<Number> residual_capacity(F);
348 //Making F to the graph containing the edges of the residual graph
349 //which are in some shortest paths
350 for(typename AugGraph::EdgeIt e=res_graph.template first<typename AugGraph::EdgeIt>(); res_graph.valid(e); res_graph.next(e)) {
351 if (dist.get(res_graph.head(e))==dist.get(res_graph.tail(e))+1) {
352 typename MutableGraph::Edge f=F.addEdge(res_graph_to_F.get(res_graph.tail(e)), res_graph_to_F.get(res_graph.head(e)));
353 original_edge.update();
354 original_edge.set(f, e);
355 residual_capacity.update();
356 residual_capacity.set(f, res_graph.free(e));
364 //computing blocking flow with dfs
365 typedef typename MutableGraph::NodeMap<bool> BlockingReachedMap;
366 DfsIterator4< MutableGraph, typename MutableGraph::OutEdgeIt, BlockingReachedMap > dfs(F);
367 typename MutableGraph::NodeMap<typename MutableGraph::Edge> pred(F);
368 pred.set(sF, typename MutableGraph::Edge(INVALID));
369 //invalid iterators for sources
371 typename MutableGraph::NodeMap<Number> free(F);
373 dfs.pushAndSetReached(sF);
374 while (!dfs.finished()) {
376 if (F.valid(typename MutableGraph::OutEdgeIt(dfs))) {
377 if (dfs.isBNodeNewlyReached()) {
378 typename MutableGraph::Node v=F.aNode(dfs);
379 typename MutableGraph::Node w=F.bNode(dfs);
381 if (F.valid(pred.get(v))) {
382 free.set(w, std::min(free.get(v), residual_capacity.get(dfs)));
384 free.set(w, residual_capacity.get(dfs));
393 F.erase(typename MutableGraph::OutEdgeIt(dfs));
399 typename MutableGraph::Node n=tF;
400 Number augment_value=free.get(tF);
401 while (F.valid(pred.get(n))) {
402 typename MutableGraph::Edge e=pred.get(n);
403 res_graph.augment(original_edge.get(e), augment_value);
405 if (residual_capacity.get(e)==augment_value)
408 residual_capacity.set(e, residual_capacity.get(e)-augment_value);
416 bool augmentOnBlockingFlow2() {
419 //typedef ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap> EAugGraph;
420 typedef FilterGraphWrapper< ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap> > EAugGraph;
421 typedef typename EAugGraph::OutEdgeIt EAugOutEdgeIt;
422 typedef typename EAugGraph::Edge EAugEdge;
424 EAugGraph res_graph(*G, *flow, *capacity);
426 //typedef typename EAugGraph::NodeMap<bool> ReachedMap;
428 ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>,
429 typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::OutEdgeIt,
430 ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::NodeMap<bool> > bfs(res_graph);
432 bfs.pushAndSetReached(s);
434 typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::
435 NodeMap<int>& dist=res_graph.dist;
437 while ( !bfs.finished() ) {
438 typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::OutEdgeIt e=bfs;
439 if (res_graph.valid(e) && bfs.isBNodeNewlyReached()) {
440 dist.set(res_graph.head(e), dist.get(res_graph.tail(e))+1);
443 } //computing distances from s in the residual graph
450 //computing blocking flow with dfs
451 typedef typename EAugGraph::NodeMap<bool> BlockingReachedMap;
452 DfsIterator4< EAugGraph, EAugOutEdgeIt, BlockingReachedMap >
454 typename EAugGraph::NodeMap<EAugEdge> pred(res_graph);
455 pred.set(s, EAugEdge(INVALID));
456 //invalid iterators for sources
458 typename EAugGraph::NodeMap<Number> free(res_graph);
460 dfs.pushAndSetReached(s);
461 while (!dfs.finished()) {
463 if (res_graph.valid(EAugOutEdgeIt(dfs))) {
464 if (dfs.isBNodeNewlyReached()) {
466 typename EAugGraph::Node v=res_graph.aNode(dfs);
467 typename EAugGraph::Node w=res_graph.bNode(dfs);
469 pred.set(w, EAugOutEdgeIt(dfs));
470 if (res_graph.valid(pred.get(v))) {
471 free.set(w, std::min(free.get(v), res_graph.free(dfs)));
473 free.set(w, res_graph.free(dfs));
482 res_graph.erase(dfs);
489 typename EAugGraph::Node n=t;
490 Number augment_value=free.get(t);
491 while (res_graph.valid(pred.get(n))) {
492 EAugEdge e=pred.get(n);
493 res_graph.augment(e, augment_value);
495 if (res_graph.free(e)==0)
505 //int num_of_augmentations=0;
506 while (augmentOnShortestPath()) {
507 //while (augmentOnBlockingFlow<MutableGraph>()) {
508 //std::cout << ++num_of_augmentations << " ";
509 //std::cout<<std::endl;
512 template<typename MutableGraph> void run() {
513 //int num_of_augmentations=0;
514 //while (augmentOnShortestPath()) {
515 while (augmentOnBlockingFlow<MutableGraph>()) {
516 //std::cout << ++num_of_augmentations << " ";
517 //std::cout<<std::endl;
523 for(G->/*getF*/first(e, s); G->valid(e); G->next(e)) {
531 template <typename Graph, typename Number, typename FlowMap, typename CapacityMap>
534 typedef typename Graph::Node Node;
535 typedef typename Graph::NodeIt NodeIt;
536 typedef typename Graph::Edge Edge;
537 typedef typename Graph::EdgeIt EdgeIt;
538 typedef typename Graph::OutEdgeIt OutEdgeIt;
539 typedef typename Graph::InEdgeIt InEdgeIt;
541 typedef typename Graph::NodeMap<bool> SMap;
542 typedef typename Graph::NodeMap<bool> TMap;
550 const CapacityMap* capacity;
551 typedef ResGraphWrapper<Graph, Number, FlowMap, CapacityMap > AugGraph;
552 typedef typename AugGraph::OutEdgeIt AugOutEdgeIt;
553 typedef typename AugGraph::Edge AugEdge;
556 MaxMatching(const Graph& _G, SMap& _S, TMap& _T, FlowMap& _flow, const CapacityMap& _capacity) :
557 G(&_G), S(&_S), T(&_T), flow(&_flow), capacity(&_capacity) { }
558 bool augmentOnShortestPath() {
559 AugGraph res_graph(*G, *flow, *capacity);
562 typedef typename AugGraph::NodeMap<bool> ReachedMap;
563 BfsIterator5< AugGraph, /*AugOutEdgeIt,*/ ReachedMap > res_bfs(res_graph);
564 typename AugGraph::NodeMap<AugEdge> pred(res_graph);
565 for(NodeIt s=G->template first<NodeIt>(); G->valid(s); G->next(s)) {
567 for(OutEdgeIt e=G->template first<OutEdgeIt>(s); G->valid(e); G->next(e))
570 res_bfs.pushAndSetReached(s);
571 pred.set(s, AugEdge(INVALID));
575 typename AugGraph::NodeMap<Number> free(res_graph);
578 //searching for augmenting path
579 while ( !res_bfs.finished() ) {
580 AugOutEdgeIt e=res_bfs;
581 if (res_graph.valid(e) && res_bfs.isBNodeNewlyReached()) {
582 Node v=res_graph.tail(e);
583 Node w=res_graph.head(e);
585 if (res_graph.valid(pred.get(v))) {
586 free.set(w, std::min(free.get(v), res_graph.free(e)));
588 free.set(w, res_graph.free(e));
590 if (T->get(res_graph.head(e))) {
598 } //end of searching augmenting path
602 Number augment_value=free.get(n);
603 while (res_graph.valid(pred.get(n))) {
604 AugEdge e=pred.get(n);
605 res_graph.augment(e, augment_value);
613 // template<typename MutableGraph> bool augmentOnBlockingFlow() {
614 // bool _augment=false;
616 // AugGraph res_graph(*G, *flow, *capacity);
618 // typedef typename AugGraph::NodeMap<bool> ReachedMap;
619 // BfsIterator4< AugGraph, AugOutEdgeIt, ReachedMap > bfs(res_graph);
621 // bfs.pushAndSetReached(s);
622 // typename AugGraph::NodeMap<int> dist(res_graph); //filled up with 0's
623 // while ( !bfs.finished() ) {
624 // AugOutEdgeIt e=bfs;
625 // if (res_graph.valid(e) && bfs.isBNodeNewlyReached()) {
626 // dist.set(res_graph.head(e), dist.get(res_graph.tail(e))+1);
630 // } //computing distances from s in the residual graph
633 // typename AugGraph::NodeMap<typename MutableGraph::Node>
634 // res_graph_to_F(res_graph);
635 // for(typename AugGraph::NodeIt n=res_graph.template first<typename AugGraph::NodeIt>(); res_graph.valid(n); res_graph.next(n)) {
636 // res_graph_to_F.set(n, F.addNode());
639 // typename MutableGraph::Node sF=res_graph_to_F.get(s);
640 // typename MutableGraph::Node tF=res_graph_to_F.get(t);
642 // typename MutableGraph::EdgeMap<AugEdge> original_edge(F);
643 // typename MutableGraph::EdgeMap<Number> residual_capacity(F);
645 // //Making F to the graph containing the edges of the residual graph
646 // //which are in some shortest paths
647 // for(typename AugGraph::EdgeIt e=res_graph.template first<typename AugGraph::EdgeIt>(); res_graph.valid(e); res_graph.next(e)) {
648 // if (dist.get(res_graph.head(e))==dist.get(res_graph.tail(e))+1) {
649 // typename MutableGraph::Edge f=F.addEdge(res_graph_to_F.get(res_graph.tail(e)), res_graph_to_F.get(res_graph.head(e)));
650 // original_edge.update();
651 // original_edge.set(f, e);
652 // residual_capacity.update();
653 // residual_capacity.set(f, res_graph.free(e));
657 // bool __augment=true;
659 // while (__augment) {
661 // //computing blocking flow with dfs
662 // typedef typename MutableGraph::NodeMap<bool> BlockingReachedMap;
663 // DfsIterator4< MutableGraph, typename MutableGraph::OutEdgeIt, BlockingReachedMap > dfs(F);
664 // typename MutableGraph::NodeMap<typename MutableGraph::Edge> pred(F);
665 // pred.set(sF, typename MutableGraph::Edge(INVALID));
666 // //invalid iterators for sources
668 // typename MutableGraph::NodeMap<Number> free(F);
670 // dfs.pushAndSetReached(sF);
671 // while (!dfs.finished()) {
673 // if (F.valid(typename MutableGraph::OutEdgeIt(dfs))) {
674 // if (dfs.isBNodeNewlyReached()) {
675 // typename MutableGraph::Node v=F.aNode(dfs);
676 // typename MutableGraph::Node w=F.bNode(dfs);
678 // if (F.valid(pred.get(v))) {
679 // free.set(w, std::min(free.get(v), residual_capacity.get(dfs)));
681 // free.set(w, residual_capacity.get(dfs));
690 // F.erase(typename MutableGraph::OutEdgeIt(dfs));
696 // typename MutableGraph::Node n=tF;
697 // Number augment_value=free.get(tF);
698 // while (F.valid(pred.get(n))) {
699 // typename MutableGraph::Edge e=pred.get(n);
700 // res_graph.augment(original_edge.get(e), augment_value);
702 // if (residual_capacity.get(e)==augment_value)
705 // residual_capacity.set(e, residual_capacity.get(e)-augment_value);
713 // bool augmentOnBlockingFlow2() {
714 // bool _augment=false;
716 // //typedef ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap> EAugGraph;
717 // typedef FilterGraphWrapper< ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap> > EAugGraph;
718 // typedef typename EAugGraph::OutEdgeIt EAugOutEdgeIt;
719 // typedef typename EAugGraph::Edge EAugEdge;
721 // EAugGraph res_graph(*G, *flow, *capacity);
723 // //typedef typename EAugGraph::NodeMap<bool> ReachedMap;
725 // ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>,
726 // typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::OutEdgeIt,
727 // ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::NodeMap<bool> > bfs(res_graph);
729 // bfs.pushAndSetReached(s);
731 // typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::
732 // NodeMap<int>& dist=res_graph.dist;
734 // while ( !bfs.finished() ) {
735 // typename ErasingResGraphWrapper<Graph, Number, FlowMap, CapacityMap>::OutEdgeIt e=bfs;
736 // if (res_graph.valid(e) && bfs.isBNodeNewlyReached()) {
737 // dist.set(res_graph.head(e), dist.get(res_graph.tail(e))+1);
740 // } //computing distances from s in the residual graph
742 // bool __augment=true;
744 // while (__augment) {
747 // //computing blocking flow with dfs
748 // typedef typename EAugGraph::NodeMap<bool> BlockingReachedMap;
749 // DfsIterator4< EAugGraph, EAugOutEdgeIt, BlockingReachedMap >
751 // typename EAugGraph::NodeMap<EAugEdge> pred(res_graph);
752 // pred.set(s, EAugEdge(INVALID));
753 // //invalid iterators for sources
755 // typename EAugGraph::NodeMap<Number> free(res_graph);
757 // dfs.pushAndSetReached(s);
758 // while (!dfs.finished()) {
760 // if (res_graph.valid(EAugOutEdgeIt(dfs))) {
761 // if (dfs.isBNodeNewlyReached()) {
763 // typename EAugGraph::Node v=res_graph.aNode(dfs);
764 // typename EAugGraph::Node w=res_graph.bNode(dfs);
766 // pred.set(w, EAugOutEdgeIt(dfs));
767 // if (res_graph.valid(pred.get(v))) {
768 // free.set(w, std::min(free.get(v), res_graph.free(dfs)));
770 // free.set(w, res_graph.free(dfs));
779 // res_graph.erase(dfs);
786 // typename EAugGraph::Node n=t;
787 // Number augment_value=free.get(t);
788 // while (res_graph.valid(pred.get(n))) {
789 // EAugEdge e=pred.get(n);
790 // res_graph.augment(e, augment_value);
791 // n=res_graph.tail(e);
792 // if (res_graph.free(e)==0)
793 // res_graph.erase(e);
802 //int num_of_augmentations=0;
803 while (augmentOnShortestPath()) {
804 //while (augmentOnBlockingFlow<MutableGraph>()) {
805 //std::cout << ++num_of_augmentations << " ";
806 //std::cout<<std::endl;
809 // template<typename MutableGraph> void run() {
810 // //int num_of_augmentations=0;
811 // //while (augmentOnShortestPath()) {
812 // while (augmentOnBlockingFlow<MutableGraph>()) {
813 // //std::cout << ++num_of_augmentations << " ";
814 // //std::cout<<std::endl;
820 for(G->/*getF*/first(e); G->valid(e); G->next(e)) {
832 // template <typename Graph, typename Number, typename FlowMap, typename CapacityMap>
835 // typedef typename Graph::Node Node;
836 // typedef typename Graph::Edge Edge;
837 // typedef typename Graph::EdgeIt EdgeIt;
838 // typedef typename Graph::OutEdgeIt OutEdgeIt;
839 // typedef typename Graph::InEdgeIt InEdgeIt;
842 // std::list<Node>& S;
843 // std::list<Node>& T;
845 // const CapacityMap& capacity;
846 // typedef ResGraphWrapper<Graph, Number, FlowMap, CapacityMap > AugGraph;
847 // typedef typename AugGraph::OutEdgeIt AugOutEdgeIt;
848 // typedef typename AugGraph::Edge AugEdge;
849 // typename Graph::NodeMap<bool> SMap;
850 // typename Graph::NodeMap<bool> TMap;
852 // MaxFlow2(const Graph& _G, std::list<Node>& _S, std::list<Node>& _T, FlowMap& _flow, const CapacityMap& _capacity) : G(_G), S(_S), T(_T), flow(_flow), capacity(_capacity), SMap(_G), TMap(_G) {
853 // for(typename std::list<Node>::const_iterator i=S.begin();
854 // i!=S.end(); ++i) {
855 // SMap.set(*i, true);
857 // for (typename std::list<Node>::const_iterator i=T.begin();
858 // i!=T.end(); ++i) {
859 // TMap.set(*i, true);
863 // AugGraph res_graph(G, flow, capacity);
864 // bool _augment=false;
865 // Node reached_t_node;
867 // typedef typename AugGraph::NodeMap<bool> ReachedMap;
868 // BfsIterator4< AugGraph, AugOutEdgeIt, ReachedMap > res_bfs(res_graph);
869 // for(typename std::list<Node>::const_iterator i=S.begin();
870 // i!=S.end(); ++i) {
871 // res_bfs.pushAndSetReached(*i);
873 // //res_bfs.pushAndSetReached(s);
875 // typename AugGraph::NodeMap<AugEdge> pred(res_graph);
876 // //filled up with invalid iterators
878 // typename AugGraph::NodeMap<Number> free(res_graph);
880 // //searching for augmenting path
881 // while ( !res_bfs.finished() ) {
882 // AugOutEdgeIt e=/*AugOutEdgeIt*/(res_bfs);
883 // if (e.valid() && res_bfs.isBNodeNewlyReached()) {
884 // Node v=res_graph.tail(e);
885 // Node w=res_graph.head(e);
887 // if (pred.get(v).valid()) {
888 // free.set(w, std::min(free.get(v), e.free()));
890 // free.set(w, e.free());
892 // if (TMap.get(res_graph.head(e))) {
894 // reached_t_node=res_graph.head(e);
900 // } //end of searching augmenting path
903 // Node n=reached_t_node;
904 // Number augment_value=free.get(reached_t_node);
905 // while (pred.get(n).valid()) {
906 // AugEdge e=pred.get(n);
907 // e.augment(augment_value);
908 // n=res_graph.tail(e);
915 // while (augment()) { }
917 // Number flowValue() {
919 // for(typename std::list<Node>::const_iterator i=S.begin();
920 // i!=S.end(); ++i) {
921 // for(OutEdgeIt e=G.template first<OutEdgeIt>(*i); e.valid(); ++e) {
924 // for(InEdgeIt e=G.template first<InEdgeIt>(*i); e.valid(); ++e) {
936 #endif //EDMONDS_KARP_H