
4 Feb
2013
4 Feb
'13
8:39 a.m.
On Mon, 4 Feb 2013, The Maschine wrote:
Hi all, In order to find the depth of a source_node from other nodes in my graph, without weights, I use this simple example of the bacon BFS visitor via the tree_edge(). I also count the number of nodes from that source. (snip) What would be an equivalent visitor for Dijkstra? Node count is ok but how do I calculate a "weighted bacon number" with dijkstra (boost::property<boost::edge_weight_t, float>)??
The interface to Dijkstra's algorithm provides a parameter for a distance map, which appears to do exactly what you want. You should be able to add that as an argument and then remove the distance part from your visitor. -- Jeremiah Willcock