Changeset 967:6563019430ba in lemon-0.x for src/work
- Timestamp:
- 11/08/04 16:22:39 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1354
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/alpar/dijkstra.h
r959 r967 43 43 ///The type of the map that stores the edge lengths. 44 44 45 ///It must meet the \ref ReadMapconcept.45 ///It must meet the \ref concept::ReadMap "ReadMap" concept. 46 46 /// 47 47 typedef LM LengthMap; … … 49 49 typedef typename LM::ValueType ValueType; 50 50 ///The heap type used by Dijkstra algorithm. 51 52 ///The heap type used by Dijkstra algorithm. 53 /// 54 ///\sa BinHeap 55 ///\sa Dijkstra 51 56 typedef BinHeap<typename Graph::Node, 52 57 typename LM::ValueType, … … 57 62 ///edges of the shortest paths. 58 63 /// 59 ///It must meet the \ref WriteMapconcept.64 ///It must meet the \ref concept::WriteMap "WriteMap" concept. 60 65 /// 61 66 typedef typename Graph::template NodeMap<typename GR::Edge> PredMap; … … 71 76 ///nodes of the shortest paths. 72 77 /// 73 ///It must meet the \ref WriteMapconcept.78 ///It must meet the \ref concept::WriteMap "WriteMap" concept. 74 79 /// 75 80 typedef typename Graph::template NodeMap<typename GR::Node> PredNodeMap; … … 77 82 78 83 ///\todo Please document... 79 /// 84 /// 80 85 static PredNodeMap *createPredNodeMap(const GR &G) 81 86 { … … 84 89 ///The type of the map that stores the dists of the nodes. 85 90 86 ///It must meet the \ref WriteMapconcept.91 ///It must meet the \ref concept::WriteMap "WriteMap" concept. 87 92 /// 88 93 typedef typename Graph::template NodeMap<typename LM::ValueType> DistMap; … … 167 172 ///The heap type used by the dijkstra algorithm. 168 173 typedef typename TR::Heap Heap; 169 170 174 private: 171 175 /// Pointer to the underlying graph. … … 225 229 ///\ref named-templ-param "Named parameter" for setting PredMap type 226 230 231 ///\relates Dijkstra 227 232 ///\ingroup flowalgs 228 233 ///\ref named-templ-param "Named parameter" for setting PredMap type
Note: See TracChangeset
for help on using the changeset viewer.