标签: c++ boost boost-graph
Example code:
breadth_first_search(g, vertex(s, g), color_map(get(&VertexProps::color, g)).visitor(vis));
什么是color_map,它在哪里定义?它在哪里记录?
color_map
答案 0 :(得分:2)
它被定义为http://www.boost.org/doc/libs/1_46_0/boost/graph/named_function_params.hpp
答案 1 :(得分:0)
如果您有权访问src代码,我建议您查看ctags 这个非凡的工具将为您索引代码,并允许即时跳转src-tree中索引的所有内容的定义/实现。
另一种方法是使用ack来搜索它。
答案 2 :(得分:-1)
可能是该图书馆的two bit color map吗?