4

我有一个带有顶点 A..C 和边 E1..E4 的有向多重图

A ---E1--> B
A ---E2--> B
A ---E3--> B
B ---E4--> C

我想遍历连接 A 和 B 的边。

在 BGL 中,我将其表示为:

#include <boost/graph/adjacency_list.hpp>

struct Vertex
{
  std::string code;
};

struct Edge
{
  double distance;
  std::string code;
};

int main()
{
  using namespace boost;
  typedef adjacency_list<listS, vecS, directedS, Vertex, Edge> Graph;
  Graph g;
  auto a= add_vertex(Vertex{ "A" }, g);
  auto b= add_vertex(Vertex{ "B" }, g);
  auto c= add_vertex(Vertex{ "C" }, g);
  add_edge(a, b, Edge{ 10, "E1" }, g);
  add_edge(a, b, Edge{ 10, "E2" }, g);
  add_edge(a, b, Edge{ 10, "E3" }, g);
  add_edge(a, c, Edge{ 10, "E4" }, g);

  // checking number of edges
  std::cout<< num_edges(g)<< std::endl;

  // printing edges branching from A
  auto erange= out_edges(a, g);
  for(auto i= erange.first; i!= erange.second; ++ i)
    std::cout<< g[*i].code<< std::endl;

  // now we want to iterate over edges that connect A and B
  auto wtf= boost::edge_range(a, b, g);
}

这会导致编译错误:

In file included from /usr/include/boost/graph/adjacency_list.hpp:246:
/usr/include/boost/graph/detail/adjacency_list.hpp:1617:25: error: no matching constructor for initialization of 'StoredEdge' (aka
      'boost::detail::stored_edge_property<unsigned long, Edge>')
        equal_range(el, StoredEdge(v, fake_edge_container.end(),
                    ^          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

我已阅读文档:

std::pair<out_edge_iterator, out_edge_iterator> edge_range(vertex_descriptor u, vertex_descriptor v, const adjacency_list& g) Returns a pair of out-edge iterators that give the range for all the parallel edges from u to v. This function only works when the OutEdgeList for the adjacency_list is a container that sorts the out edges according to target vertex, and allows for parallel edges. The multisetS selector chooses such a container.

http://www.boost.org/doc/libs/1_54_0/libs/graph/doc/adjacency_list.html

修改了图表:

typedef adjacency_list<multisetS, vecS, directedS, Vertex, Edge> Graph;

但错误并没有改变。

那么如何使用 BGL 在有向多重图中列出两个顶点(从-> 到)之间的边?

我找到了一个快速而肮脏的方法:

auto erange= out_edges(a, g);$
for(auto i= erange.first; i!= erange.second; ++ i)$
  std::cout<< g[*i].code<< " -> "<< g[target(*i, g)].code<< std::endl;$

这将让我按目标顶点过滤边缘。但是你怎么用boost::edge_range

4

1 回答 1

1

这个错误之前已经在Boost 邮件列表中报告过。

当 adjacency_list 的 Directed Selector 模板参数设置为directedS 时,它无法编译,但如果参数是 undirectedS 或 bidirectionalS,则编译成功。下面附上一个说明问题的简短程序。问题是 edge_range() 通过一个带有 3 个参数的构造函数实例化了一个 StoredEdge,但是当 Directed Selector 被定向时,StoredEdge 的类型定义为 stored_edge_property,它没有这样的构造函数。一种解决方案可能是创建重载的 edge_range_dispatch() 函数,并在
Config::on_edge_storage 上调度。

在您的程序中更改directedSundirectedS有效。活生生的例子。但这可能不是您的应用程序所需要的,因此您之前提到的简单过滤器可能会更好。您可以在 Boost 邮件列表上重新发布此内容,以获得更多关注。

于 2013-10-07T12:02:59.610 回答