src/lemon/min_cost_flow.h
changeset 1401 9588dcef6793
parent 1359 1581f961cfaa
     1.1 --- a/src/lemon/min_cost_flow.h	Mon May 02 05:49:33 2005 +0000
     1.2 +++ b/src/lemon/min_cost_flow.h	Wed May 04 13:07:10 2005 +0000
     1.3 @@ -23,7 +23,7 @@
     1.4  
     1.5  
     1.6  #include <lemon/dijkstra.h>
     1.7 -#include <lemon/graph_wrapper.h>
     1.8 +#include <lemon/graph_adaptor.h>
     1.9  #include <lemon/maps.h>
    1.10  #include <vector>
    1.11  
    1.12 @@ -68,7 +68,7 @@
    1.13      typedef typename Graph::OutEdgeIt OutEdgeIt;
    1.14      typedef typename Graph::template EdgeMap<int> EdgeIntMap;
    1.15  
    1.16 -    typedef ResGraphWrapper<const Graph,int,CapacityMap,EdgeIntMap> ResGW;
    1.17 +    typedef ResGraphAdaptor<const Graph,int,CapacityMap,EdgeIntMap> ResGW;
    1.18      typedef typename ResGW::Edge ResGraphEdge;
    1.19  
    1.20    protected: