(none)
authormarci
Thu, 06 May 2004 18:07:45 +0000
changeset 5605adcef1d7bcc
parent 559 82a8f2bc5758
child 561 a10e6f1769e2
(none)
src/hugo/graph_wrapper.h
src/work/marci/bfs_iterator.h
     1.1 --- a/src/hugo/graph_wrapper.h	Thu May 06 17:45:12 2004 +0000
     1.2 +++ b/src/hugo/graph_wrapper.h	Thu May 06 18:07:45 2004 +0000
     1.3 @@ -569,8 +569,8 @@
     1.4  
     1.5      ResGraphWrapper() : GraphWrapper<Graph>(0), 
     1.6  			capacity(0), flow(0) { }
     1.7 -    void setCapacityMap(const CapacityMap& _capacity_map) {
     1.8 -      capacity_map=&_capacity_map;
     1.9 +    void setCapacityMap(const CapacityMap& _capacity) {
    1.10 +      capacity=&_capacity;
    1.11      }
    1.12      void setFlowMap(FlowMap& _flow) {
    1.13        flow=&_flow;
     2.1 --- a/src/work/marci/bfs_iterator.h	Thu May 06 17:45:12 2004 +0000
     2.2 +++ b/src/work/marci/bfs_iterator.h	Thu May 06 18:07:45 2004 +0000
     2.3 @@ -6,6 +6,8 @@
     2.4  #include <stack>
     2.5  #include <utility>
     2.6  
     2.7 +#include <hugo/invalid.h>
     2.8 +
     2.9  namespace hugo {
    2.10  
    2.11    template <typename Graph, /*typename OutEdgeIt,*/