Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions include/boost/graph/howard_cycle_ratio.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,9 @@ namespace detail
* Constructor
* \param g = (V, E) - a directed multigraph.
* \param vim Vertex Index Map. Read property Map: V -> [0,
* num_vertices(g)). \param ewm edge weight map. Read property map: E
* -> R \param ew2m edge weight map. Read property map: E -> R+ \param
* infty A big enough value to guaranty that there exist a cycle with
* better ratio.
* \param cmp The compare operator for float_ts.
* num_vertices(g)).
* \param ewm edge weight map. Read property map: E -> R
* \param ew2m edge weight map. Read property map: E -> R+
*/
mcr_howard(const Graph& g, VertexIndexMap vim, EdgeWeight1 ewm,
EdgeWeight2 ew2m)
Expand Down
4 changes: 3 additions & 1 deletion include/boost/graph/visitors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,11 @@ template < typename PropertyMap, typename EventTag > struct property_put
* Creates a property_put functor which just sets a given value to a vertex or
* edge.
*
* The third argument is an unnamed event filter tag, used only to select the
* event the returned functor responds to.
*
* @param property_map Given writeable property map
* @param value Fixed value of the map
* @param tag Event Filter
* @return The functor.
*/

Expand Down
Loading