diff -r 979a0b389f84 -r 691ce54544c5 lemon/min_cost_flow.h --- a/lemon/min_cost_flow.h Thu Feb 21 13:06:33 2008 +0000 +++ b/lemon/min_cost_flow.h Mon Feb 25 12:35:06 2008 +0000 @@ -96,7 +96,7 @@ /// General constructor of the class (without lower bounds). MinCostFlow( const Graph &graph, const CapacityMap &capacity, - const CostMap &_ost, + const CostMap &cost, const SupplyMap &supply ) : MinCostFlowImpl(graph, capacity, cost, supply) {} @@ -104,7 +104,7 @@ MinCostFlow( const Graph &graph, const LowerMap &lower, const CapacityMap &capacity, - const CostMap &_ost, + const CostMap &cost, Node s, Node t, Supply flow_value ) : MinCostFlowImpl( graph, lower, capacity, cost,