COIN-OR::LEMON - Graph Library

Changeset 2579:691ce54544c5 in lemon-0.x for lemon/min_cost_flow.h


Ignore:
Timestamp:
02/25/08 13:35:06 (16 years ago)
Author:
Peter Kovacs
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3461
Message:

Bug fixes in min cost flow files.
Use enum type instead of static constants in NetworkSimplex? to avoid
linker errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/min_cost_flow.h

    r2576 r2579  
    9797    MinCostFlow( const Graph &graph,
    9898                 const CapacityMap &capacity,
    99                  const CostMap &_ost,
     99                 const CostMap &cost,
    100100                 const SupplyMap &supply ) :
    101101      MinCostFlowImpl(graph, capacity, cost, supply) {}
     
    105105                 const LowerMap &lower,
    106106                 const CapacityMap &capacity,
    107                  const CostMap &_ost,
     107                 const CostMap &cost,
    108108                 Node s, Node t,
    109109                 Supply flow_value ) :
Note: See TracChangeset for help on using the changeset viewer.