tags:

views:

75

answers:

1

If my BGL graph contain edge from node x to node y, and I want to change the target of this edge, so that now it's pointing from x to z, how it can be done?

Are there any functions in BGL for that?

A: 

You can remove an edge and add another one instead - see *remove_edge* and *add_edge* defined in the MutableGraph concept. I don't see any direct manipulation function. Alternatively, you can define your own one that would hide the removal and addition. Special care should be taken for the graphs with properties attached to edges (i.e. MutablePropertyGraph).

hvintus

related questions