Hello boost users.
I'm using BGL, and was happy to see the addition of the finish_edge()
visitor to DFS.
I had previously added code to finish_vertex() to emulate this visitor,
had to track vertices, not ideal.
But when I add the template function to my Visitor class, the code is
never hit. Specifically, I'm using Visual Studio 2013 and the compiler
is telling me my debug breakpoint will never get hit in the function as
the code did not make it into the executable.
The visitor class is below, any thoughts on what I'm doing wrong?
I took a look at undirected_dfs.hpp and it includes call_finish_edge()
in the DFS algorithm in undir_dfv_impl().
Thanks,
Michael
class BaseVisitor : public boost::dfs_visitor<>
{
public:
template