equal
deleted
inserted
replaced
162 /// |
162 /// |
163 /// \param _Graph The graph type the algorithm runs on. The default value |
163 /// \param _Graph The graph type the algorithm runs on. The default value |
164 /// is \ref ListGraph. The value of _Graph is not used directly by |
164 /// is \ref ListGraph. The value of _Graph is not used directly by |
165 /// BellmanFord, it is only passed to \ref BellmanFordDefaultTraits. |
165 /// BellmanFord, it is only passed to \ref BellmanFordDefaultTraits. |
166 /// \param _LengthMap This read-only EdgeMap determines the lengths of the |
166 /// \param _LengthMap This read-only EdgeMap determines the lengths of the |
167 /// edges. The default map type is \ref concept::StaticGraph::EdgeMap |
167 /// edges. The default map type is \ref concept::Graph::EdgeMap |
168 /// "Graph::EdgeMap<int>". The value of _LengthMap is not used directly |
168 /// "Graph::EdgeMap<int>". The value of _LengthMap is not used directly |
169 /// by BellmanFord, it is only passed to \ref BellmanFordDefaultTraits. |
169 /// by BellmanFord, it is only passed to \ref BellmanFordDefaultTraits. |
170 /// \param _Traits Traits class to set various data types used by the |
170 /// \param _Traits Traits class to set various data types used by the |
171 /// algorithm. The default traits class is \ref BellmanFordDefaultTraits |
171 /// algorithm. The default traits class is \ref BellmanFordDefaultTraits |
172 /// "BellmanFordDefaultTraits<_Graph,_LengthMap>". See \ref |
172 /// "BellmanFordDefaultTraits<_Graph,_LengthMap>". See \ref |