Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73996 - trunk/libs/graph/doc
From: jewillco_at_[hidden]
Date: 2011-08-21 21:42:13


Author: jewillco
Date: 2011-08-21 21:42:12 EDT (Sun, 21 Aug 2011)
New Revision: 73996
URL: http://svn.boost.org/trac/boost/changeset/73996

Log:
Fixed documentation based on issues found by Ragavendran Gopalakrishnan
Text files modified:
   trunk/libs/graph/doc/constructing_algorithms.html | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/libs/graph/doc/constructing_algorithms.html
==============================================================================
--- trunk/libs/graph/doc/constructing_algorithms.html (original)
+++ trunk/libs/graph/doc/constructing_algorithms.html 2011-08-21 21:42:12 EDT (Sun, 21 Aug 2011)
@@ -106,7 +106,7 @@
 graph algorithm as a template function, the concept checks, and some
 typedefs. The implementation is straightforward, the only step not
 discussed above is the color initialization step, where we set the
-color of all the vertices to ``uncolored''.
+color of all the vertices to "uncolored."
 
 <P>
 <PRE>
@@ -125,8 +125,8 @@
     function_requires&lt; VertexListGraphConcept&lt;VertexListGraph&gt; &gt;();
     function_requires&lt; ReadWritePropertyMapConcept&lt;Color, vertex_descriptor&gt; &gt;();
     function_requires&lt; IntegerConcept&lt;ColorType&gt; &gt;();
- function_requires&lt; size_type, ReadablePropertyMapConcept&lt;Order&gt; &gt;();
- typedef typename same_type&lt;OrderType, vertex_descriptor&gt;::type req_same;
+ function_requires&lt; ReadablePropertyMapConcept&lt;Order, size_type&gt; &gt;();
+ BOOST_STATIC_ASSERT((is_same&lt;OrderType, vertex_descriptor&gt;::value));
     
     size_type max_color = 0;
     const size_type V = num_vertices(G);


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