src/work/marci/edmonds_karp_demo.cc
changeset 267 c17f741190f7
parent 266 4cec4981dfd1
child 268 f4eb1ae59b50
     1.1 --- a/src/work/marci/edmonds_karp_demo.cc	Tue Mar 30 17:16:53 2004 +0000
     1.2 +++ b/src/work/marci/edmonds_karp_demo.cc	Tue Mar 30 17:37:14 2004 +0000
     1.3 @@ -101,7 +101,7 @@
     1.4  
     1.5      typedef GW::EdgeMapWrapper< Graph::EdgeMap<int>, int > EMW;
     1.6      EMW cw(cap);
     1.7 -    MaxFlow<GW, int, GW::EdgeMap<int>, EMW > max_flow_test(G, s, t, flow, cw);
     1.8 +    MaxFlow<GW, int, GW::EdgeMap<int>, EMW > max_flow_test(gw, s, t, flow, cw);
     1.9      int i=0;
    1.10      while (max_flow_test.augmentOnBlockingFlow<MutableGraph>()) { 
    1.11  //     for(EdgeIt e=G.template first<EdgeIt>(); e.valid(); ++e) {