156   std::cout << "names and capacity values" << std::endl;   | 
   156   std::cout << "names and capacity values" << std::endl;   | 
   157   for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   157   for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   158     std::cout << node_name.get(i) << ": ";  | 
   158     std::cout << node_name.get(i) << ": ";  | 
   159     std::cout << "out edges: ";  | 
   159     std::cout << "out edges: ";  | 
   160     for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   160     for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   161       std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   161       std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   162     std::cout << "in edges: ";  | 
   162     std::cout << "in edges: ";  | 
   163     for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   163     for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   164       std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   164       std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   165     std::cout << std::endl;  | 
   165     std::cout << std::endl;  | 
   166   }  | 
   166   }  | 
   167   | 
   167   | 
   168   //flowG.deleteEdge(s_v1);  | 
   168   //flowG.deleteEdge(s_v1);  | 
   169   //flowG.deleteEdge(s_v2);  | 
   169   //flowG.deleteEdge(s_v2);  | 
   170   //flowG.deleteEdge(v1_v2);  | 
   170   //flowG.deleteEdge(v1_v2);  | 
   171   //flowG.deleteEdge(v1_v3);  | 
   171   //flowG.deleteEdge(v1_v3);  | 
   172     | 
   172     | 
   173   | 
   173   | 
   174   //flowG.setTail(v3_t, v2);  | 
   174   //flowG.setSource(v3_t, v2);  | 
   175   //flowG.setHead(v3_t, s);  | 
   175   //flowG.setTarget(v3_t, s);  | 
   176 /*  | 
   176 /*  | 
   177   for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   177   for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   178     std::cout << node_name.get(i) << ": ";  | 
   178     std::cout << node_name.get(i) << ": ";  | 
   179     std::cout << "out edges: ";  | 
   179     std::cout << "out edges: ";  | 
   180     for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   180     for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   181       std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   181       std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   182     std::cout << "in edges: ";  | 
   182     std::cout << "in edges: ";  | 
   183     for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   183     for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   184       std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   184       std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   185     std::cout << std::endl;  | 
   185     std::cout << std::endl;  | 
   186   }  | 
   186   }  | 
   187     | 
   187     | 
   188   for(EdgeIt e=flowG.first<EdgeIt>(); flowG.valid(e); flowG.next(e)) { | 
   188   for(EdgeIt e=flowG.first<EdgeIt>(); flowG.valid(e); flowG.next(e)) { | 
   189     std::cout << node_name.get(flowG.tail(e)) << "-"<< cap.get(e) << "->" << node_name.get(flowG.head(e)) << " ";  | 
   189     std::cout << node_name.get(flowG.source(e)) << "-"<< cap.get(e) << "->" << node_name.get(flowG.target(e)) << " ";  | 
   190   }  | 
   190   }  | 
   191 */  | 
   191 */  | 
   192   /*  | 
   192   /*  | 
   193   while (flowG.valid(flowG.first<EdgeIt>())) { | 
   193   while (flowG.valid(flowG.first<EdgeIt>())) { | 
   194     flowG.deleteEdge(flowG.first<EdgeIt>());  | 
   194     flowG.deleteEdge(flowG.first<EdgeIt>());  | 
   195     for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   195     for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   196       std::cout << node_name.get(i) << ": ";  | 
   196       std::cout << node_name.get(i) << ": ";  | 
   197       std::cout << "out edges: ";  | 
   197       std::cout << "out edges: ";  | 
   198       for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   198       for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   199 	std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   199 	std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   200       std::cout << "in edges: ";  | 
   200       std::cout << "in edges: ";  | 
   201       for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   201       for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   202 	std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   202 	std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   203       std::cout << std::endl;  | 
   203       std::cout << std::endl;  | 
   204     }  | 
   204     }  | 
   205   }  | 
   205   }  | 
   206     | 
   206     | 
   207   while (flowG.valid(flowG.first<NodeIt>())) { | 
   207   while (flowG.valid(flowG.first<NodeIt>())) { | 
   208     flowG.deleteNode(flowG.first<NodeIt>());  | 
   208     flowG.deleteNode(flowG.first<NodeIt>());  | 
   209     for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   209     for(NodeIt i=flowG.first<NodeIt>(); flowG.valid(i); flowG.next(i)) {  | 
   210       std::cout << node_name.get(i) << ": ";  | 
   210       std::cout << node_name.get(i) << ": ";  | 
   211       std::cout << "out edges: ";  | 
   211       std::cout << "out edges: ";  | 
   212       for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   212       for(OutEdgeIt j=flowG.first<OutEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   213 	std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   213 	std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   214       std::cout << "in edges: ";  | 
   214       std::cout << "in edges: ";  | 
   215       for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   215       for(InEdgeIt j=flowG.first<InEdgeIt>(i); flowG.valid(j); flowG.next(j))   | 
   216 	std::cout << node_name.get(flowG.tail(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.head(j)) << " ";  | 
   216 	std::cout << node_name.get(flowG.source(j)) << "-"<< cap.get(j) << "->" << node_name.get(flowG.target(j)) << " ";  | 
   217       std::cout << std::endl;  | 
   217       std::cout << std::endl;  | 
   218     }  | 
   218     }  | 
   219   }  | 
   219   }  | 
   220   */  | 
   220   */  | 
   221   | 
   221   | 
   226     ListGraph::EdgeMap<int> flow(flowG, 0);  | 
   226     ListGraph::EdgeMap<int> flow(flowG, 0);  | 
   227     MaxFlow<ListGraph, int, ListGraph::EdgeMap<int>, ListGraph::EdgeMap<int> > max_flow_test(flowG, s, t, flow, cap);  | 
   227     MaxFlow<ListGraph, int, ListGraph::EdgeMap<int>, ListGraph::EdgeMap<int> > max_flow_test(flowG, s, t, flow, cap);  | 
   228     /*  | 
   228     /*  | 
   229     max_flow_test.augmentOnBlockingFlow<ListGraph>();  | 
   229     max_flow_test.augmentOnBlockingFlow<ListGraph>();  | 
   230     for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   230     for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   231       std::cout<<"("<<flowG.tail(e)<< "-"<<flow.get(e)<<"->"<<flowG.head(e)<<") "; | 
   231       std::cout<<"("<<flowG.source(e)<< "-"<<flow.get(e)<<"->"<<flowG.target(e)<<") "; | 
   232     }  | 
   232     }  | 
   233     std::cout<<std::endl;  | 
   233     std::cout<<std::endl;  | 
   234     max_flow_test.augmentOnBlockingFlow<ListGraph>();  | 
   234     max_flow_test.augmentOnBlockingFlow<ListGraph>();  | 
   235     for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   235     for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   236       std::cout<<"("<<flowG.tail(e)<< "-"<<flow.get(e)<<"->"<<flowG.head(e)<<") "; | 
   236       std::cout<<"("<<flowG.source(e)<< "-"<<flow.get(e)<<"->"<<flowG.target(e)<<") "; | 
   237     }  | 
   237     }  | 
   238     std::cout<<std::endl;*/  | 
   238     std::cout<<std::endl;*/  | 
   239     //max_flow_test.run();  | 
   239     //max_flow_test.run();  | 
   240       | 
   240       | 
   241     //std::cout << "maximum flow: "<< std::endl;  | 
   241     //std::cout << "maximum flow: "<< std::endl;  | 
   242     while (max_flow_test.augmentOnShortestPath()) { | 
   242     while (max_flow_test.augmentOnShortestPath()) { | 
   243       for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   243       for(EdgeIt e=flowG.template first<EdgeIt>(); flowG.valid(e); flowG.next(e)) {  | 
   244 	std::cout<<"("<<flowG.tail(e)<< "-"<<flow.get(e)<<"->"<<flowG.head(e)<<") "; | 
   244 	std::cout<<"("<<flowG.source(e)<< "-"<<flow.get(e)<<"->"<<flowG.target(e)<<") "; | 
   245       }  | 
   245       }  | 
   246       std::cout<<std::endl;  | 
   246       std::cout<<std::endl;  | 
   247     }  | 
   247     }  | 
   248     std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl;  | 
   248     std::cout << "flow value: "<< max_flow_test.flowValue() << std::endl;  | 
   249   }  | 
   249   }  |