# HG changeset patch # User marci # Date 1083866865 0 # Node ID 5adcef1d7bcc067dd4b3b8d0a444654791307508 # Parent 82a8f2bc575829e76f149e1a41363b217a9b349c diff -r 82a8f2bc5758 -r 5adcef1d7bcc src/hugo/graph_wrapper.h --- a/src/hugo/graph_wrapper.h Thu May 06 17:45:12 2004 +0000 +++ b/src/hugo/graph_wrapper.h Thu May 06 18:07:45 2004 +0000 @@ -569,8 +569,8 @@ ResGraphWrapper() : GraphWrapper(0), capacity(0), flow(0) { } - void setCapacityMap(const CapacityMap& _capacity_map) { - capacity_map=&_capacity_map; + void setCapacityMap(const CapacityMap& _capacity) { + capacity=&_capacity; } void setFlowMap(FlowMap& _flow) { flow=&_flow; diff -r 82a8f2bc5758 -r 5adcef1d7bcc src/work/marci/bfs_iterator.h --- a/src/work/marci/bfs_iterator.h Thu May 06 17:45:12 2004 +0000 +++ b/src/work/marci/bfs_iterator.h Thu May 06 18:07:45 2004 +0000 @@ -6,6 +6,8 @@ #include #include +#include + namespace hugo { template