|
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< VertexListGraphConcept<VertexListGraph> >();
function_requires< ReadWritePropertyMapConcept<Color, vertex_descriptor> >();
function_requires< IntegerConcept<ColorType> >();
- function_requires< size_type, ReadablePropertyMapConcept<Order> >();
- typedef typename same_type<OrderType, vertex_descriptor>::type req_same;
+ function_requires< ReadablePropertyMapConcept<Order, size_type> >();
+ BOOST_STATIC_ASSERT((is_same<OrderType, vertex_descriptor>::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