Changeset 693:80164e89dcbc in lemon-0.x for src
- Timestamp:
- 07/06/04 11:52:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@943
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/dijkstra.h
r689 r693 39 39 /// 40 40 ///\author Jacint Szabo and Alpar Juttner 41 ///\todo We need a typedef-names should be standardized. 41 ///\todo We need a typedef-names should be standardized. (-: 42 42 43 43 #ifdef DOXYGEN … … 61 61 ///The type of the length of the edges. 62 62 typedef typename LM::ValueType ValueType; 63 ///The t he type of the map that stores the edge lengths.63 ///The type of the map that stores the edge lengths. 64 64 typedef LM LengthMap; 65 ///\brief The t he type of the map that stores the last65 ///\brief The type of the map that stores the last 66 66 ///edges of the shortest paths. 67 67 typedef typename Graph::template NodeMap<Edge> PredMap; 68 ///\brief The t he type of the map that stores the last but one68 ///\brief The type of the map that stores the last but one 69 69 ///nodes of the shortest paths. 70 70 typedef typename Graph::template NodeMap<Node> PredNodeMap; 71 ///The t he type of the map that stores the dists of the nodes.71 ///The type of the map that stores the dists of the nodes. 72 72 typedef typename Graph::template NodeMap<ValueType> DistMap; 73 73
Note: See TracChangeset
for help on using the changeset viewer.