9 Nov
2004
9 Nov
'04
1:34 p.m.
On Nov 8, 2004, at 9:28 PM, Meredith L. Patterson wrote:
I ran into this exact same problem a few days ago, and posted about it (even referring to the same code snippet you did), but received no response.
Sorry! I lost the message in the shuffle.
I eventually ended up modifying the loop in graphviz.hpp, replacing
out << source(*ei, g) << Traits::delimiter() << target(*ei, g)) << " ";
with
out << get(vertex_index, source(*ei, g)) << Traits::delimiter() << \ get(vertex_index, target(*ei, g)) << " ";
FWIW, we actually did fix this in CVS back in May and the corrected code will be in 1.32.0. Doug