COIN-OR::LEMON - Graph Library

Changeset 169:c223ffdbdb5c in glemon-0.x


Ignore:
Timestamp:
10/22/06 11:24:55 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3011
Message:

Update for the new Path interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dijkstrabox.cc

    r165 r169  
    127127              for(int j=0;j<found;j++)
    128128                {
    129                   DirPath<Graph> path(g);
     129                  Path<Graph> path(g);
    130130                  sb.getPath(path, j);
    131131                  for(int k=0;k<path.length();k++)
    132132                    {
    133                       DirPath<Graph>::EdgeIt ei;
    134                       path.nth(ei,k);
     133                      Path<Graph>::EdgeIt ei;
     134                      ei=path.nthEdge(k);
    135135                      (*outputmap)[ei]=j+1;
    136136                    }
Note: See TracChangeset for help on using the changeset viewer.