Changeset 1126:04e1cb315951 in lemon-0.x for src/work/alpar/dijkstra.h
- Timestamp:
- 02/05/05 21:17:15 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1525
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/alpar/dijkstra.h
r1125 r1126 271 271 static PredMap *createPredMap(const Graph &G) 272 272 { 273 throw Uninitialized Data();273 throw UninitializedParameter(); 274 274 } 275 275 }; … … 290 290 static PredNodeMap *createPredNodeMap(const Graph &G) 291 291 { 292 throw Uninitialized Data();292 throw UninitializedParameter(); 293 293 } 294 294 }; … … 309 309 static DistMap *createDistMap(const Graph &G) 310 310 { 311 throw Uninitialized Data();311 throw UninitializedParameter(); 312 312 } 313 313 }; … … 639 639 void run() 640 640 { 641 if(_source==0) throw Uninitialized Data();641 if(_source==0) throw UninitializedParameter(); 642 642 Dijkstra<Graph,LengthMap,TR> Dij(*(Graph*)_g,*(LengthMap*)_length); 643 643 if(_pred) Dij.predMap(*(PredMap*)_pred);
Note: See TracChangeset
for help on using the changeset viewer.