COIN-OR::LEMON - Graph Library

Changeset 330:7ac0d4e8a31c in lemon-0.x for src/work/athos


Ignore:
Timestamp:
04/15/04 16:41:20 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@448
Message:

In the resgraphwrapper interface, and in the constructor,
the order of FlowMap? and CapacityMap? is changed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/athos/minlengthpaths.h

    r329 r330  
    3838    typedef ConstMap<Edge,int> ConstMap;
    3939
    40     typedef ResGraphWrapper<const Graph,int,EdgeIntMap,ConstMap> ResGraphType;
     40    typedef ResGraphWrapper<const Graph,int,ConstMap,EdgeIntMap> ResGraphType;
    4141
    4242
     
    9393
    9494      //We need a residual graph, in which some of the edges are reversed
    95       ResGraphType res_graph(G, reversed, const1map);
     95      ResGraphType res_graph(G, const1map, reversed);
    9696
    9797      //Initialize the copy of the Dijkstra potential to zero
Note: See TracChangeset for help on using the changeset viewer.