Changeset 169:c223ffdbdb5c in glemon-0.x
- Timestamp:
- 10/22/06 11:24:55 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3011
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dijkstrabox.cc
r165 r169 127 127 for(int j=0;j<found;j++) 128 128 { 129 DirPath<Graph> path(g);129 Path<Graph> path(g); 130 130 sb.getPath(path, j); 131 131 for(int k=0;k<path.length();k++) 132 132 { 133 DirPath<Graph>::EdgeIt ei;134 path.nth(ei,k);133 Path<Graph>::EdgeIt ei; 134 ei=path.nthEdge(k); 135 135 (*outputmap)[ei]=j+1; 136 136 }
Note: See TracChangeset
for help on using the changeset viewer.