Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我的 BGL 图包含从节点 x 到节点 y 的边,并且我想更改此边的目标,以便现在它从 x 指向 z,怎么办?
BGL中是否有任何功能?
您可以删除一条边并添加另一条边 - 请参阅MutableGraph概念中remove_edge的add_edge定义。我没有看到任何直接操作功能。或者,您可以定义自己的隐藏删除和添加的内容。应特别注意带有附加到边的属性的图(即MutablePropertyGraph)。
remove_edge
add_edge