Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r60610 - trunk/libs/graph/doc
From: asutton_at_[hidden]
Date: 2010-03-15 07:00:37


Author: asutton
Date: 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
New Revision: 60610
URL: http://svn.boost.org/trac/boost/changeset/60610

Log:
Reviewed and applied patch from #4004. Removed one ", which" change since
the resulting change made the trailing clause read as if it applied to
the wrong type.

Text files modified:
   trunk/libs/graph/doc/AStarVisitor.html | 10 +++++-----
   trunk/libs/graph/doc/BFSVisitor.html | 4 ++--
   trunk/libs/graph/doc/BellmanFordVisitor.html | 4 ++--
   trunk/libs/graph/doc/DFSVisitor.html | 2 +-
   trunk/libs/graph/doc/EventVisitorList.html | 4 ++--
   trunk/libs/graph/doc/bc_clustering.html | 2 +-
   trunk/libs/graph/doc/bellman_visitor.html | 4 ++--
   trunk/libs/graph/doc/bfs_visitor.html | 4 ++--
   trunk/libs/graph/doc/dfs_visitor.html | 4 ++--
   trunk/libs/graph/doc/dijkstra_visitor.html | 4 ++--
   trunk/libs/graph/doc/distance_recorder.html | 4 ++--
   trunk/libs/graph/doc/predecessor_recorder.html | 12 ++++++------
   trunk/libs/graph/doc/property_writer.html | 4 ++--
   trunk/libs/graph/doc/time_stamper.html | 6 +++---
   trunk/libs/graph/doc/tsp_tour_len_visitor.html | 2 +-
   trunk/libs/graph/doc/visitor_concepts.html | 2 ++
   16 files changed, 37 insertions(+), 35 deletions(-)

Modified: trunk/libs/graph/doc/AStarVisitor.html
==============================================================================
--- trunk/libs/graph/doc/AStarVisitor.html (original)
+++ trunk/libs/graph/doc/AStarVisitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -118,7 +118,7 @@
 <td><tt>vis.examine_vertex(u, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-This is invoked on a vertex as it is popped from the queue (i.e. it
+This is invoked on a vertex as it is popped from the queue (i.e., it
 has the lowest cost on the OPEN list). This happens immediately before
 <tt>examine_edge()</tt> is invoked on each of the out-edges of vertex
 <tt>u</tt>.
@@ -160,7 +160,7 @@
 <td><tt>vis.edge_not_relaxed(e, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-Upon examination, if an edge is not relaxed (see above), then this
+Upon examination, if an edge is not relaxed (see above) then this
 method is invoked.
 </td>
 </tr>
@@ -171,7 +171,7 @@
 <td><tt>void</tt></td>
 <td>
 This is invoked when a vertex that is on the CLOSED list is
-``rediscovered'' via a more efficient path, and is re-added to the
+``rediscovered'' via a more efficient path and is re-added to the
 OPEN list.
 </td>
 </tr>
@@ -181,8 +181,8 @@
 <td><tt>vis.finish_vertex(u, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-This is invoked on a vertex when it is added to the CLOSED list, which
-happens after all of its out edges have been examined.
+This is invoked on a vertex when it is added to the CLOSED list. This
+happens after all of its out-edges have been examined.
 </td>
 </tr>
 

Modified: trunk/libs/graph/doc/BFSVisitor.html
==============================================================================
--- trunk/libs/graph/doc/BFSVisitor.html (original)
+++ trunk/libs/graph/doc/BFSVisitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -140,7 +140,7 @@
 <td><tt>vis.gray_target(e, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-This is invoked on the subset of non-tree edges who's target vertex is
+This is invoked on the subset of non-tree edges whose target vertex is
 colored gray at the time of examination. The color gray indicates
 that the vertex is currently in the queue.
 </td>
@@ -151,7 +151,7 @@
 <td><tt>vis.black_target(e, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-This is invoked on the subset of non-tree edges who's target vertex is
+This is invoked on the subset of non-tree edges whose target vertex is
 colored black at the time of examination. The color black indicates
 that the vertex has been removed from the queue.
 </td>

Modified: trunk/libs/graph/doc/BellmanFordVisitor.html
==============================================================================
--- trunk/libs/graph/doc/BellmanFordVisitor.html (original)
+++ trunk/libs/graph/doc/BellmanFordVisitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -116,8 +116,8 @@
 <td><tt>vis.edge_minimized(e, g)</tt></td>
 <td><tt>void</tt></td>
 <td>
-After the <tt>num_vertices(g)</tt> iterations through the edge set
-of the graph is complete, one last iteration is made to test whether
+After <tt>num_vertices(g)</tt> iterations through the edge set
+of the graph are completed, one last iteration is made to test whether
 each edge was minimized. If the edge is minimized then this function
 is invoked.
 </td>

Modified: trunk/libs/graph/doc/DFSVisitor.html
==============================================================================
--- trunk/libs/graph/doc/DFSVisitor.html (original)
+++ trunk/libs/graph/doc/DFSVisitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -157,7 +157,7 @@
 This is invoked on vertex <tt>u</tt> after <tt>finish_vertex</tt> has
 been called for all the vertices in the DFS-tree rooted at vertex
 <tt>u</tt>. If vertex <tt>u</tt> is a leaf in the DFS-tree, then
-the <tt>finish_vertex</tt> function is call on <tt>u</tt> after
+the <tt>finish_vertex</tt> function is called on <tt>u</tt> after
 all the out-edges of <tt>u</tt> have been examined.
 </td>
 </tr>

Modified: trunk/libs/graph/doc/EventVisitorList.html
==============================================================================
--- trunk/libs/graph/doc/EventVisitorList.html (original)
+++ trunk/libs/graph/doc/EventVisitorList.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -19,7 +19,7 @@
 
 An EventVisitorList is either an <a
 href="./EventVisitor.html">EventVisitor</a>, or a list of
-EventVisitor's combined using <tt>std::pair</tt>. Each graph algorithm
+EventVisitors combined using <tt>std::pair</tt>. Each graph algorithm
 defines visitor adaptors that convert an EventVisitorList into the
 particular kind of visitor needed by the algorithm.
 
@@ -91,7 +91,7 @@
                      color.begin());
 </pre>
 
-For creating a list of more than two event visitors, nest calls to
+For creating a list of more than two event visitors, you can nest calls to
 <tt>std::make_pair</tt> in the following way:
 
 <pre>

Modified: trunk/libs/graph/doc/bc_clustering.html
==============================================================================
--- trunk/libs/graph/doc/bc_clustering.html (original)
+++ trunk/libs/graph/doc/bc_clustering.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -61,7 +61,7 @@
 <h2>Description</h2>
 <p>This algorithm implements graph clustering based on edge
 betweenness centrality. It is an iterative algorithm, where in each
-step it compute the edge betweenness centrality (via <a href=
+step it computes the edge betweenness centrality (via <a href=
 "betweenness_centrality.html">brandes_betweenness_centrality</a>) and
 removes the edge with the maximum betweenness centrality. The
 <tt class="computeroutput">done</tt> function object determines

Modified: trunk/libs/graph/doc/bellman_visitor.html
==============================================================================
--- trunk/libs/graph/doc/bellman_visitor.html (original)
+++ trunk/libs/graph/doc/bellman_visitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -22,7 +22,7 @@
 </H1>
 
 This class is an adapter that converts a list of <a
-href="./EventVisitor.html">EventVisitor</a>'s (constructed using
+href="./EventVisitor.html">EventVisitor</a>s (constructed using
 <tt>std::pair</tt>) into a <a
 href="./BellmanFordVisitor.html">BellmanFordVisitor</a>.
 
@@ -63,7 +63,7 @@
 This class implements all of the member functions required by <a
 href="./BellmanFordVisitor.html">BellmanFordVisitor</a>. In each function the
 appropriate event is dispatched to the <a
-href="./EventVisitor.html">EventVisitor</a>'s in the EventVisitorList.
+href="./EventVisitor.html">EventVisitor</a> in the EventVisitorList.
 
 <h3>Non-Member Functions</h3>
 

Modified: trunk/libs/graph/doc/bfs_visitor.html
==============================================================================
--- trunk/libs/graph/doc/bfs_visitor.html (original)
+++ trunk/libs/graph/doc/bfs_visitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -22,7 +22,7 @@
 </H1>
 
 This class is an adapter that converts a list of <a
-href="./EventVisitor.html">EventVisitor</a>'s (constructed using
+href="./EventVisitor.html">EventVisitor</a>s (constructed using
 <tt>std::pair</tt>) into a BFSVisitor.
 
 
@@ -80,7 +80,7 @@
 This class implements all of the member functions required by <a
 href="./BFSVisitor.html">BFSVisitor</a>. In each function the
 appropriate event is dispatched to the <a
-href="./EventVisitor.html">EventVisitor</a>'s in the EventVisitorList.
+href="./EventVisitor.html">EventVisitor</a> in the EventVisitorList.
 
 <h3>Non-Member Functions</h3>
 

Modified: trunk/libs/graph/doc/dfs_visitor.html
==============================================================================
--- trunk/libs/graph/doc/dfs_visitor.html (original)
+++ trunk/libs/graph/doc/dfs_visitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -22,7 +22,7 @@
 </H1>
 
 This class is an adapter that converts a list of <a
-href="./EventVisitor.html">EventVisitor</a>'s (constructed using
+href="./EventVisitor.html">EventVisitor</a>s (constructed using
 <tt>std::pair</tt>) into a DFSVisitor.
 
 
@@ -63,7 +63,7 @@
 This class implements all of the member functions required by <a
 href="./DFSVisitor.html">DFSVisitor</a>. In each function the
 appropriate event is dispatched to the <a
-href="./EventVisitor.html">EventVisitor</a>'s in the EventVisitorList.
+href="./EventVisitor.html">EventVisitor</a> in the EventVisitorList.
 
 <h3>Non-Member Functions</h3>
 

Modified: trunk/libs/graph/doc/dijkstra_visitor.html
==============================================================================
--- trunk/libs/graph/doc/dijkstra_visitor.html (original)
+++ trunk/libs/graph/doc/dijkstra_visitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -22,7 +22,7 @@
 </H1>
 
 This class is an adapter that converts a list of <a
-href="./EventVisitor.html">EventVisitor</a>'s (constructed using
+href="./EventVisitor.html">EventVisitor</a>s (constructed using
 <tt>std::pair</tt>) into a <a
 href="./DijkstraVisitor.html">DijkstraVisitor</a>.
 
@@ -77,7 +77,7 @@
 This class implements all of the member functions required by <a
 href="./DijkstraVisitor.html">DijkstraVisitor</a>. In each
 function the appropriate event is dispatched to the <a
-href="./EventVisitor.html">EventVisitor</a>'s in the EventVisitorList.
+href="./EventVisitor.html">EventVisitor</a> in the EventVisitorList.
 
 <h3>Non-Member Functions</h3>
 

Modified: trunk/libs/graph/doc/distance_recorder.html
==============================================================================
--- trunk/libs/graph/doc/distance_recorder.html (original)
+++ trunk/libs/graph/doc/distance_recorder.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -27,7 +27,7 @@
 source vertex during a graph search. When applied to edge <i>e =
 (u,v)</i>, the distance of <i>v</i> is recorded to be one more than
 the distance of <i>u</i>. The distance recorder is typically used with
-the <tt>on_tree_edge</tt> or <tt>on_relax_edge</tt> events, and
+the <tt>on_tree_edge</tt> or <tt>on_relax_edge</tt> events and
 cannot be used with vertex events.
 
 <p>
@@ -64,7 +64,7 @@
 <TR><TD><TT>DistanceMap</TT></TD>
 <TD>
 A <a
-href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>,
+href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>
 where the key type and the value type are the vertex descriptor type
 of the graph.
 </TD>

Modified: trunk/libs/graph/doc/predecessor_recorder.html
==============================================================================
--- trunk/libs/graph/doc/predecessor_recorder.html (original)
+++ trunk/libs/graph/doc/predecessor_recorder.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -27,7 +27,7 @@
 recording the predecessors is an efficient way to encode the search
 tree that was traversed during the search. The predecessor recorder is
 typically used with the <tt>on_tree_edge</tt> or
-<tt>on_relax_edge</tt> events, and cannot be used with vertex events.
+<tt>on_relax_edge</tt> events and cannot be used with vertex events.
 
 <p>
 <tt>predecessor_recorder</tt> can be used with graph algorithms by
@@ -40,12 +40,12 @@
 <p>
 Algorithms such as Dijkstra's and breadth-first search will not assign
 a predecessor to the source vertex (which is the root of the search
-tree). Often times it is useful to initialize the source vertex's
+tree). It is often useful to initialize the source vertex's
 predecessor to itself, thereby identifying the root vertex as the only
 vertex which is its own parent. When using an algorithm like
-depth-first search that creates a forest (multiple search trees), it
-is useful to intialize the predecessor of every vertex to itself, so
-that all the root nodes can be distinguished.
+depth-first search that creates a forest (multiple search trees) it
+is useful to intialize the predecessor of every vertex to itself. This
+way all the root nodes can be distinguished.
 
 
 <h3>Example</h3>
@@ -74,7 +74,7 @@
 <TR><TD><TT>PredecessorMap</TT></TD>
 <TD>
 A <a
-href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>,
+href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>
 where the key type and the value type are the vertex descriptor type
 of the graph.
 </TD>

Modified: trunk/libs/graph/doc/property_writer.html
==============================================================================
--- trunk/libs/graph/doc/property_writer.html (original)
+++ trunk/libs/graph/doc/property_writer.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -74,9 +74,9 @@
 <TR><TD><TT>PropertyMap</TT></TD>
 <TD>
 A <a
-href="../../property_map/doc/ReadablePropertyMap.html">ReadablePropertyMap</a>,
+href="../../property_map/doc/ReadablePropertyMap.html">ReadablePropertyMap</a>
 where the <tt>key_type</tt> is the vertex descriptor type or edge
-descriptor of the graph (depending on the kind of event tag), and
+descriptor of the graph (depending on the kind of event tag) and
 the <tt>value_type</tt> of the property is convertible
 to the <tt>value_type</tt> of the <tt>OutputIterator</tt>.
 </TD>

Modified: trunk/libs/graph/doc/time_stamper.html
==============================================================================
--- trunk/libs/graph/doc/time_stamper.html (original)
+++ trunk/libs/graph/doc/time_stamper.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -74,9 +74,9 @@
 <TR><TD><TT>TimeMap</TT></TD>
 <TD>
 A <a
-href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>,
+href="../../property_map/doc/WritablePropertyMap.html">WritablePropertyMap</a>
 where the <tt>key_type</tt> is the vertex descriptor type or edge
-descriptor of the graph (depending on the kind of event tag), and
+descriptor of the graph (depending on the kind of event tag) and
 where the <tt>TimeT</tt> type is convertible to the
 <tt>value_type</tt> of the time property map.
 </TD>
@@ -85,7 +85,7 @@
 
 <TR><TD><TT>TimeT</TT></TD>
 <TD>
-The type for the time counter, which should be convertible to the
+The type for the time counter which should be convertible to the
 <tt>value_type</tt> of the time property map
 </TD>
 <TD>&nbsp;</TD>

Modified: trunk/libs/graph/doc/tsp_tour_len_visitor.html
==============================================================================
--- trunk/libs/graph/doc/tsp_tour_len_visitor.html (original)
+++ trunk/libs/graph/doc/tsp_tour_len_visitor.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -102,7 +102,7 @@
 tsp_tour_len_visitor&lt;OutputIterator&gt;<br>
 make_tsp_tour_len_visitor(Graph const& g, OutIter iter, Length& l, WeightMap map)
 </tt></td><td>
-Returns a tour_len_visitor that records the TSP tour in the OutputIterator parameter and the tour's length in the Length parameter.
+Returns a tour_len_visitor that records the TSP tour in the OutputIterator parameter and the length of the tour in the Length parameter.
 </td></tr>
 
 </table>

Modified: trunk/libs/graph/doc/visitor_concepts.html
==============================================================================
--- trunk/libs/graph/doc/visitor_concepts.html (original)
+++ trunk/libs/graph/doc/visitor_concepts.html 2010-03-15 07:00:35 EDT (Mon, 15 Mar 2010)
@@ -40,6 +40,8 @@
   <li> Bellman Ford Visitor
   <li> A* Visitor
   <li> Event Visitor
+ <li> Planar Face Visitor
+ <li> TSP Tour Visitor
 </ul>
 
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk