BGL中color_map在哪里定义的?

发布于 2024-11-15 00:15:46 字数 294 浏览 2 评论 0原文

来自 BGL 的示例代码

breadth_first_search(g, vertex(s, g), color_map(get(&VertexProps::color, g)).visitor(vis));

什么是color_map,它在哪里定义的?它记录在哪里?

Example code from BGL:

breadth_first_search(g, vertex(s, g), color_map(get(&VertexProps::color, g)).visitor(vis));

What is color_map, where is it defined? And where is it documented?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

扮仙女 2024-11-22 00:15:46

如果您有权访问 src 代码,我建议您查看 ctags
这个出色的工具将为您索引代码,并允许即时跳转 src 树中索引的所有内容的定义/实现。

另一种方法是使用 ack 来搜索它。

If you have access to the src-code I would suggest that you take a look at ctags
This remarkable tool will index the code for you and allow instant jumping the the definition/implementation of everything indexed in the src-tree.

Another approach is to use ack to search for it.

梦途 2024-11-22 00:15:46

难道是该库中的两位颜色图

Could it be the two bit color map from that library?

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