#include <rrt.h>
Inheritance diagram for RRTDual:
Public Methods | |
RRTDual (Problem *p) | |
virtual | ~RRTDual () |
virtual bool | Plan () |
The dual-tree planner used in LaValle, Kuffner, ICRA 1999. Each tree is extended toward a randomly-sampled point. RRTExtExt is generally better. More... | |
Protected Methods | |
void | RecoverSolution (MSLNode *n1, MSLNode *n2) |
This planner grows one tree, G, from the initial state, and one tree, G2, from the goal state. When the closest pair of points between the two trees is within GapError, a solution path is returned. The planners in the derived classes also use two trees, and are generally more efficient than RRTDual.
|
|
|
|
|
The dual-tree planner used in LaValle, Kuffner, ICRA 1999. Each tree is extended toward a randomly-sampled point. RRTExtExt is generally better.
Reimplemented from RRT. Reimplemented in RRTExtExt. |
|
|