COIN-OR::LEMON - Graph Library

Changeset 2507:6520edb2c3f3 in lemon-0.x for lemon/min_cost_max_flow.h


Ignore:
Timestamp:
11/07/07 22:52:57 (16 years ago)
Author:
Peter Kovacs
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3361
Message:

Small bug fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/min_cost_max_flow.h

    r2440 r2507  
    7676    /// \brief The type of the flow map.
    7777    typedef typename Graph::template EdgeMap<Capacity> FlowMap;
     78    typedef typename CostMap::Value Cost;
    7879
    7980  private:
     
    134135    Cost totalCost() const {
    135136      Cost c = 0;
    136       for (EdgeIt e(graph); e != INVALID; ++e)
     137      for (typename Graph::EdgeIt e(graph); e != INVALID; ++e)
    137138        c += flow[e] * cost[e];
    138139      return c;
Note: See TracChangeset for help on using the changeset viewer.