I want to implement robot’s path planning subsystem. I’m going to use A* from boost library.
I need implicit graph. I have to use astar_search_no_init function (It is written in documentation). Unfortunately, I can’t find an example of using astar_search_no_init and implicit graph.
I found “A* Graph Search Within the BGL Framework”. The author uses astar_search for implicit graph. He tries to add vertex inside examine_vertex method of visitor. But it is impossible in boost 1.49 because graph is passed as constant reference in this method.
Can anyone help me?
I have just come up with a working example of an implicit graph. The graph is also infinite. I just posted this to boost-users, but I’ll put it here too so it’s easy to find.