在discover_vertex访问者中更改图的权重

时间:2019-02-04 12:47:49

标签: boost boost-graph visitor

在运行算法(在这种情况下为dijkstra)时,是否可以更改图形的权重?

在以下代码中,我得到一个编译器错误:

  

'g':您不能分配给常量

struct WeightVisitor : public boost::default_dijkstra_visitor
{
    template <typename Vertex, typename Graph> void
        discover_vertex(Vertex v, Graph & g)
    {
        /// Get parent
        Vertex parentVertex = boost::in_edges(v, g).first->m_source;

        typedef typename boost::graph_traits< Graph >::edge_descriptor edge_t;
        edge_t edgeDescriptor;

        std::pair<edge_t, bool> ed = boost::edge(parentVertex, v, g);
        if (tTrue == ed.second)
        {
            edgeDescriptor = ed.first;

            //put(&EdgeValueType::weight, tree, edgeDescriptor, i_wtNewWeight);
            g[edgeDescriptor].weight = rand() % 100;
            std::cout << "TimeStamp: " << g[edgeDescriptor].weight << std::endl;
        }
        else
        {
            std::cout << "Warning: No edge between input vertices" << std::endl;
        }
    }
};

没有参考,我正在处理图形副本,这不是我想要的。相反,我想直接更改图表上的权重。

以下是Dijkstra短路路径算法的调用:

boost::dijkstra_shortest_paths(g, root,
        boost::weight_map(boost::get(&tEdge::weight, g))
        .distance_map(boost::make_iterator_property_map(distances.begin(), boost::get(boost::vertex_index, g)))
        .predecessor_map(boost::make_iterator_property_map(predecessors.begin(), boost::get(boost::vertex_index, g)))
        .visitor(sWeightVisitor)
    );

对于顶点和边,我使用捆绑属性:

struct tVertex
{
    int id;
};

struct tEdge
{
    double weight;
};

图的定义

typedef boost::adjacency_list<
        boost::mapS,
        boost::vecS,
        boost::bidirectionalS,
        tVertex, tEdge>
        graph_t;

1 个答案:

答案 0 :(得分:1)

根据算法,改变重量很危险。您可能会违反算法的某些不变性,从而使行为不确定(例如,也许永远不会终止)。

但是,如果您知道自己在做什么,只需在访问者中保留一个指向可变图的指针即可。

struct WeightVisitor : public boost::default_dijkstra_visitor
{
    graph_t* _graph;

...

并使用地址实例化它:

WeightVisitor sWeightVisitor { &g };