RLRT.h
void setGoalBias(double goalBias)
Set the goal bias In the process of randomly selecting states in the state space to attempt to go tow...
Definition: RLRT.h:180
virtual void setup()
Perform extra configuration steps, if needed. This call will also issue a call to ompl::base::SpaceIn...
Definition: RLRT.cpp:65
void setKeepLast(bool keepLast)
Set whether the planner will use the range or keep last heuristic. If keepLast = false,...
Definition: RLRT.h:215
Motion(const base::SpaceInformationPtr &si)
Constructor that allocates memory for the state.
Definition: RLRT.h:228
virtual base::PlannerStatus solve(const base::PlannerTerminationCondition &ptc)
Function that can solve the motion planning problem. This function can be called multiple times on th...
Definition: RLRT.cpp:88
Motion * lastGoalMotion_
The most recent goal motion. Used for PlannerData computation.
Definition: RLRT.h:263
virtual void clear()
Clear all internal datastructures. Planner settings are not affected. Subsequent calls to solve() wil...
Definition: RLRT.cpp:57
double goalBias_
The fraction of time the goal is picked as the state to expand towards (if such a state is available)...
Definition: RLRT.h:249
void setRange(double distance)
Set the maximum distance between states in the tree.
Definition: RLRT.h:192
bool getKeepLast() const
If true, the planner will not have the range limitation. Instead, if a collision is detected,...
Definition: RLRT.h:206
bool keepLast_
If true, the planner will retain the last valid state during local planner. Default is false.
Definition: RLRT.h:256
virtual void getPlannerData(base::PlannerData &data) const
Get information about the current run of the motion planner. Repeated calls to this function will upd...
Definition: RLRT.cpp:226