I'm trying to define a graph using the boost graph library. I've read from a text file to get the from_to_and_distance matrix as defined below. I was planning to simply iterate through the matrix to define the edges of the graph but am failing to understand how to define the edge properties using this method. Specifically, I'd like to use the distance_from_a_to_b variable, as defined below, and assign it each subject edge. I am relatively new to c++, as you may see, so while the library docs may have the answer, I can't seem to understand it. Can someone please help? I plan to feed this graph into a dijkstra algorithm after it is complete - if that makes a difference.
Thanks in advance!
struct site_properties{
};
struct reach_properties{
double distance;
};
//Note that from_to_and_distance_matrix is std::vector<std::vector<double> > and
//includes inner vectors of [from_node,to_node,distance]
boost::adjacency_list<boost::vecS,boost::vecS,boost::directedS,site_properties,reach_properties> graph(unique_node_ids.size());
for(unsigned int i = 0; i < from_to_and_distance_matrix.size(); i++){
int node_a = (int)from_to_and_distance_matrix[i][0];
int node_b = (int)from_to_and_distance_matrix[i][1];
//How do I assign the distance_from_a_to_b variable to the edge?!
double distance_from_a_to_b = from_to_and_distance_matrix[i][2];
boost::add_edge(node_a,node_b,graph);
}
Since you're going to feed it to dijkstra (I assume
dijkstra_shortest_paths
), you could make it simpler by storing your distances in theedge_weight
property, which that algorithm will read by default.online demo: http://coliru.stacked-crooked.com/a/4f065507bb5bef35