equal
deleted
inserted
replaced
272 /// |
272 /// |
273 /// \param _Graph The graph type the algorithm runs on. The default value |
273 /// \param _Graph The graph type the algorithm runs on. The default value |
274 /// is \ref ListGraph. The value of _Graph is not used directly by |
274 /// is \ref ListGraph. The value of _Graph is not used directly by |
275 /// DagShortestPath, it is only passed to \ref DagShortestPathDefaultTraits. |
275 /// DagShortestPath, it is only passed to \ref DagShortestPathDefaultTraits. |
276 /// \param _LengthMap This read-only EdgeMap determines the lengths of the |
276 /// \param _LengthMap This read-only EdgeMap determines the lengths of the |
277 /// edges. The default map type is \ref concept::StaticGraph::EdgeMap |
277 /// edges. The default map type is \ref concept::Graph::EdgeMap |
278 /// "Graph::EdgeMap<int>". The value of _LengthMap is not used directly |
278 /// "Graph::EdgeMap<int>". The value of _LengthMap is not used directly |
279 /// by DagShortestPath, it is only passed to \ref DagShortestPathDefaultTraits. |
279 /// by DagShortestPath, it is only passed to \ref DagShortestPathDefaultTraits. |
280 /// \param _Traits Traits class to set various data types used by the |
280 /// \param _Traits Traits class to set various data types used by the |
281 /// algorithm. The default traits class is \ref DagShortestPathDefaultTraits |
281 /// algorithm. The default traits class is \ref DagShortestPathDefaultTraits |
282 /// "DagShortestPathDefaultTraits<_Graph,_LengthMap>". See \ref |
282 /// "DagShortestPathDefaultTraits<_Graph,_LengthMap>". See \ref |