BGL中color_map在哪里定义的?
来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它在 http://www.boost 中定义为命名参数。 org/doc/libs/1_46_0/boost/graph/named_function_params.hpp
It's defined as a named parameter in http://www.boost.org/doc/libs/1_46_0/boost/graph/named_function_params.hpp
如果您有权访问 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.
难道是该库中的两位颜色图 ?
Could it be the two bit color map from that library?