21 Aug
2010
21 Aug
'10
12:11 a.m.
I need to be able to update the source vertex of an edge in-place. The only option that I see is to remove the edge with `remove_edge` and then add a new edge with `add_edge`. The problem, however, is that I think this will mess up a property map of an edge property if it cannot expand to map a new value for the newly-added edge. Thus, I would like to update the edge in-place. How do I do this?