我做错了什么?
#include <vector>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
using namespace std;
typedef boost::adjacency_list<> Graph;
void dijkstra(Graph &g, vector<double> &edge_weights, int source, vector<double> &dist, vector<int> &prev) {
boost::dijkstra_shortest_paths(g, source,
boost::weight_map(boost::make_iterator_property_map(edge_weights.begin(), get(boost::edge_index, g))));
}
(编译: g ++ main.cc -L / usr / local / boost / )
错误:
/usr/include/boost/graph/detail/adjacency_list.hpp:2665:错误:'boost :: detail :: error_property_not_found&amp;'类型的非const引用无效初始化'boost ::细节:: error_property_not_found'
我认为问题可能是没有从边到整数的默认映射。如果是这样,我该如何定义一个?
答案 0 :(得分:2)
您的图表没有edge_index
属性,您在创建iterator_property_map
时使用的属性。您需要在图表中添加此类属性并填写。请参阅Boost Graph Library: Bundled Properties and iterating across edges和edge_index zero for all edges?了解需要完成的工作。