# HG changeset patch # User alpar # Date 1161509095 0 # Node ID c223ffdbdb5cf12017a93d056997342c30db4576 # Parent a5f82cbbc1e4a6524f64dfc8e8fb8418ce84e99d Update for the new Path interface diff -r a5f82cbbc1e4 -r c223ffdbdb5c dijkstrabox.cc --- a/dijkstrabox.cc Sun Oct 22 09:24:15 2006 +0000 +++ b/dijkstrabox.cc Sun Oct 22 09:24:55 2006 +0000 @@ -126,12 +126,12 @@ { for(int j=0;j path(g); + Path path(g); sb.getPath(path, j); for(int k=0;k::EdgeIt ei; - path.nth(ei,k); + Path::EdgeIt ei; + ei=path.nthEdge(k); (*outputmap)[ei]=j+1; } }