$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] boost graph library, default_dfs_visitor, dfs
From: Gábor Szuromi (kukkerman_at_[hidden])
Date: 2009-12-15 05:39:31
Hi!
> My problem: size of the finishingOrder vector is zero outside the
> my_visitor::finish_vertex method. I checked its size inside the
> my_visitor::finish_vertex method and its value is increasing...
All visitors have to be copy constructible and depth_first_search will
operate on the copied object.
Gabe