Boost logo

Boost-Commit :

From: dgregor_at_[hidden]
Date: 2008-07-23 09:58:30


Author: dgregor
Date: 2008-07-23 09:58:30 EDT (Wed, 23 Jul 2008)
New Revision: 47709
URL: http://svn.boost.org/trac/boost/changeset/47709

Log:
Fix Cuthill-McKee documentation typos. Fixes #2131
Text files modified:
   trunk/libs/graph/doc/cuthill_mckee_ordering.html | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: trunk/libs/graph/doc/cuthill_mckee_ordering.html
==============================================================================
--- trunk/libs/graph/doc/cuthill_mckee_ordering.html (original)
+++ trunk/libs/graph/doc/cuthill_mckee_ordering.html 2008-07-23 09:58:30 EDT (Wed, 23 Jul 2008)
@@ -44,24 +44,24 @@
             class ColorMap, class DegreeMap>
   OutputIterator
   cuthill_mckee_ordering(const IncidenceGraph& g,
- typename graph_traits<Graph>::vertex_descriptor s,
+ typename graph_traits<IncidenceGraph>::vertex_descriptor s,
                          OutputIterator inverse_permutation,
                          ColorMap color, DegreeMap degree)
 
   (2)
   template <class VertexListGraph, class OutputIterator>
   OutputIterator
- cuthill_mckee_ordering(const VertexIndexMap& G, OutputIterator inverse_permutation);
+ cuthill_mckee_ordering(const VertexListGraph& g, OutputIterator inverse_permutation);
 
   template <class VertexListGraph, class OutputIterator, class VertexIndexMap>
   OutputIterator
- cuthill_mckee_ordering(const VertexIndexMap& G, OutputIterator inverse_permutation,
+ cuthill_mckee_ordering(const VertexListGraph& g, OutputIterator inverse_permutation,
                          VertexIndexMap index_map);
  
   template <class VertexListGraph, class OutputIterator,
             class ColorMap, class DegreeMap>
   OutputIterator
- cuthill_mckee_ordering(const VertexListGraph& G, OutputIterator inverse_permutation,
+ cuthill_mckee_ordering(const VertexListGraph& g, OutputIterator inverse_permutation,
                          ColorMap color, DegreeMap degree)
                          
   (3)
@@ -70,7 +70,7 @@
   OutputIterator
   cuthill_mckee_ordering(const IncidenceGraph& g,
                              std::deque< typename
- graph_traits<Graph>::vertex_descriptor > vertex_queue,
+ graph_traits<IncidenceGraph>::vertex_descriptor > vertex_queue,
                          OutputIterator inverse_permutation,
                          ColorMap color, DegreeMap degree)
 </pre>
@@ -172,7 +172,7 @@
 
 <li> <tt>VertexListGraph&amp; g</tt> &nbsp;(IN) <br>
   An undirected graph. The graph's type must be a model of <a
- href="./VertexListGraph.html">VertexListGraph</a>.<br>
+ href="./VertexListGraph.html">VertexListGraph</a> and IncidenceGraph.<br>
   <b>Python</b>: The parameter is named <tt>graph</tt>.
 
 <li> <tt><a href="http://www.sgi.com/tech/stl/OutputIterator.html">


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