更改 BGL 中的边目标
如果我的 BGL 图包含从节点 x 到节点 y 的边,并且我想更改该边的目标,以便现在它从 x 指向 z,该怎么办?
BGL中有没有相关的函数?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以删除一条边并添加另一条边 - 请参阅 MutableGraph 概念。 我没有看到任何直接操纵功能。 或者,您可以定义自己的隐藏删除和添加的操作。 应特别注意带有附加到边的属性的图(即 MutablePropertyGraph)。
You can remove an edge and add another one instead - see
remove_edge
andadd_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).