$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: dgregor_at_[hidden]
Date: 2008-07-06 14:55:34
Author: dgregor
Date: 2008-07-06 14:55:34 EDT (Sun, 06 Jul 2008)
New Revision: 47138
URL: http://svn.boost.org/trac/boost/changeset/47138
Log:
Fix missing IncidenceGraph requirement in topoogical_sort. Fixes #1986
Text files modified: 
   trunk/libs/graph/doc/topological_sort.html |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/libs/graph/doc/topological_sort.html
==============================================================================
--- trunk/libs/graph/doc/topological_sort.html	(original)
+++ trunk/libs/graph/doc/topological_sort.html	2008-07-06 14:55:34 EDT (Sun, 06 Jul 2008)
@@ -45,7 +45,8 @@
 IN: <tt>VertexListGraph& g</tt>
 <blockquote>
   A directed acylic graph (DAG). The graph type must
-  be a model of Vertex List Graph.
+  be a model of Vertex List Graph
+  and Incidence Graph.
   If the graph is not a DAG then a not_a_dag
   exception will be thrown and the
   user should discard the contents of <tt>result</tt> range.<br>