I am using BGL for a custom AStar search. Basically, the nodes of the graph correspond to the cells of a map, and each cell has an elevation.
I've created an cell traversal score function stepTime which takes in the elevation of two cells, and outputs a cost function. I wanna add this cost function to the edge weights in my boost graph.
How do I go about this? I've seen functions using
auto weightmap = make_transform_value_property_map
to create a weight map, but how do I update the weights according to the output of:
double stepTime(const vertex_descriptor& source, const vertex_descriptor& target, const std::vector<uint8_t>& elevation)
I have no clue where you get the elevation vector from, but I guess that's your problem.
The source and target vertices are easily gotten from the graph itself, so here goes:
Demo
Live On Coliru