修改访问者的捆绑属性

rav*_*int 5 c++ boost-graph

我应该如何修改访问者内部顶点的捆绑属性?

我想使用简单的子脚本编写方法,但传递给访问者的图形参数是const,因此编译器不允许更改.

我可以在访问者中存储对图表的引用,但这看起来很奇怪.

/**

  A visitor which identifies vertices as leafs or trees

*/
class bfs_vis_leaf_finder:public default_bfs_visitor {

public:
    /**

    Constructor

    @param[in] total reference to int variable to store total number of leaves
    @param[in] g reference to graph ( used to modify bundled properties )

    */
    bfs_vis_leaf_finder( int& total, graph_t& g ) :
      myTotal( total ), myGraph( g )
      {
          myTotal = 0;
      }

    /**

    Called when the search finds a new vertex

    If the vertex has no children, it is a leaf and the total leaf count is incremented

    */
    template <typename Vertex, typename Graph>
    void discover_vertex( Vertex u, Graph& g)
    {
        if( out_edges( u, g ).first == out_edges( u, g ).second ) {
            myTotal++;
            //g[u].myLevel = s3d::cV::leaf;
            myGraph[u].myLevel = s3d::cV::leaf;
        } else {
            //g[u].myLevel = s3d::cV::tree;
            myGraph[u].myLevel = s3d::cV::tree;
        }
    }

    int& myTotal;
    graph_t& myGraph;
};
Run Code Online (Sandbox Code Playgroud)

bao*_*aol 4

你的解决方案是正确的。

要将图形类型与访问者解耦,您可以仅将有趣的属性映射传递给访问者构造函数并使用 访问其元素boost::get(property, u) = s3d::cV::leaf;。通过这种方式,您可以将任何类型兼容的顶点属性传递给访问者(访问者将更加通用,并且对图形类型中的名称更改不敏感)。

属性映射的类型将是访问者类的模板类型名称,类似于:

typedef property_map<graph_t, s3d_cv3_leaf_t your_vertex_info::*>::type your_property_map;
Run Code Online (Sandbox Code Playgroud)

有关捆绑属性的完整论文,请参阅此处。

华泰