如下所示定义我的boost::graph
,我得到所有边缘的边缘索引为零。为什么?我做错了什么?
#include <iostream>
#include <boost/graph/adjacency_list.hpp>
int main() {
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::property<boost::edge_index_t, std::size_t> > Graph;
typedef boost::graph_traits<Graph>::edge_descriptor Edge;
Graph g(3);
Edge e1 = boost::add_edge(0, 1, g).first;
Edge e2 = boost::add_edge(1, 2, g).first;
Edge e3 = boost::add_edge(2, 0, g).first;
boost::property_map<Graph, boost::edge_index_t>::type eim = boost::get(boost::edge_index, g);
size_t e1n = eim[e1],
e2n = eim[e2],
e3n = eim[e3];
return 0;
}
据我从文档和示例中可以看出,这应该可行。
答案 0 :(得分:4)
adjacency_list没有与之关联的 edge 索引,只有顶点索引。一旦考虑如何存储图表,这是非常合理的。
要获得边缘索引,您需要手动将其添加到图形描述中,然后手动处理它。