
14 Jul
2004
14 Jul
'04
2:26 p.m.
On Jul 13, 2004, at 11:52 AM, Daniele Carlucci wrote:
Hi, Which is the command to visualize a path in a graph? For ie I want to visualize all the shortest path inside a graph, or all the path from a source to a dest.
There is no direct way to visualize a graph with the Boost Graph Library. You can get the paths by supplying a "predecessor_map" parameter to Dijkstra's algorithm and rebuilding the path from the predecessor tree. Doug