#include <rrt.h>
Inheritance diagram for RRTCon:
Public Methods | |
RRTCon (Problem *p) | |
virtual | ~RRTCon () |
An empty desctructor. More... | |
virtual bool | Plan () |
Here Extend is replaced by Connect. The tree is extended all the to the random sample, if possible. More... |
The RRT in the base class uses Extend to move a small amount in each step toward the random sample. In RRTCon, Extend is replaced by a method called Connect, which iterates the extension until the random sample is reached. Connect only adds the final MSLNode to the tree (not the intermediate increments). Since RRTCon is derived from RRTGoalBias, a biasing probability can be set. By default, GoalProb = 0.0.
|
|
|
An empty desctructor.
|
|
Here Extend is replaced by Connect. The tree is extended all the to the random sample, if possible.
Reimplemented from RRT. |