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 的示例代码:
breadth_first_search(g, vertex(s, g), color_map(get(&VertexProps::color, g)).visitor(vis));
什么是color_map,在哪里定义?它记录在哪里?
color_map
它在http://www.boost.org/doc/libs/1_46_0/boost/graph/named_function_params.hpp中定义为命名参数
如果您可以访问 src-code,我建议您查看ctags 这个非凡的工具将为您索引代码,并允许即时跳转 src-tree 中索引的所有内容的定义/实现。
另一种方法是使用ack来搜索它。
可能是该库中的两位彩色图吗?