COIN-OR::LEMON - Graph Library

Changeset 2487:568ff3572a96 in lemon-0.x for lemon/csp.h


Ignore:
Timestamp:
10/02/07 16:20:04 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3326
Message:

Removing other occurences of cnt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/csp.h

    r2486 r2487  
    135135        Dijkstra<Graph,CM> dij(_g,_cost);
    136136        dij.run(s,t);
    137         cnt++;
    138137        if(!dij.reached(t)) return Path();
    139138        p=dij.path(t);
     
    145144        Dijkstra<Graph,DM> dij(_g,_delay);
    146145        dij.run(s,t);
    147         cnt++;
    148146        q=dij.path(t);
    149147        cq=cost(q);
     
    155153        _co_map.lambda(lambda);
    156154        _dij.run(s,t);
    157         cnt++;
    158155        r=_dij.path(t);
    159156        cr=cost(r);
Note: See TracChangeset for help on using the changeset viewer.