From 92e58bf5ebd587fd887c0d741e4804de91aa0bba Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Mon, 18 May 2009 17:30:27 +0000 Subject: [PATCH] Changed names of some property maps to match code; fixes #2320 [SVN r53093] --- doc/kolmogorov_max_flow.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/kolmogorov_max_flow.html b/doc/kolmogorov_max_flow.html index 87c293be..d5437ac7 100644 --- a/doc/kolmogorov_max_flow.html +++ b/doc/kolmogorov_max_flow.html @@ -227,14 +227,14 @@ must also be in the graph.
The sink vertex for the flow network graph.

Named Parameters

-

IN: capacity_map(EdgeCapacityMap cap) +

IN: edge_capacity(EdgeCapacityMap cap)

The edge capacity property map. The type must be a model of a constant Lvalue Property Map. The key type of the map must be the graph's edge descriptor type.
Default: get(edge_capacity, g)
-

OUT: residual_capacity_map(ResidualCapacityEdgeMap res) +

OUT: edge_residual_capacity(ResidualCapacityEdgeMap res)

The edge residual capacity property map. The type must be a model of a mutable Lvalue @@ -242,7 +242,7 @@ Property Map. The key type of the map must be the graph's edge descriptor type.
Default: get(edge_residual_capacity, g)
-

IN: reverse_edge_map(ReverseEdgeMap rev) +

IN: edge_reverse(ReverseEdgeMap rev)

An edge property map that maps every edge (u,v) in the graph to the reverse edge (v,u). The map must be a model @@ -275,7 +275,7 @@ algorithm. The map must be a model of mutable