$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jeffrey Holle (jeffreyholle_at_[hidden])
Date: 2007-03-01 11:54:01
Gerd Menche wrote:
> Is there a different vertices() function defined
> anywhere, that gets in the way?
>
Yes, boost::graph defines a vertices templated function for each type of
graph. It returns a bounding iterator pair to the vertices of the
graph. Its one parameter is a "const Graph&".
There is also an edges function that provides similar access to the
graph's edges.