更改 BGL 中的边目标

发布于 2024-07-17 05:32:55 字数 89 浏览 4 评论 0原文

如果我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-07-24 05:32:55

您可以删除一条边并添加另一条边 - 请参阅 MutableGraph 概念。 我没有看到任何直接操纵功能。 或者,您可以定义自己的隐藏删除和添加的操作。 应特别注意带有附加到边的属性的图(即 MutablePropertyGraph)。

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文