Loading...
Searching...
No Matches
AORRTC.cpp
42ompl::geometric::AORRTC::AORRTC(const base::SpaceInformationPtr &si) : base::Planner(si, "AORRTC")
105void ompl::geometric::AORRTC::simplifySolution(const base::PathPtr &p, const base::PlannerTerminationCondition &ptc)
119ompl::base::PlannerStatus ompl::geometric::AORRTC::solve(const base::PlannerTerminationCondition &ptc)
187 solve_status == base::PlannerStatus::INVALID_START || solve_status == base::PlannerStatus::INVALID_GOAL)
Definition of a cost value. Can represent the cost of a motion or the cost of a state.
Definition Cost.h:48
Object containing planner generated vertex and edge data. It is assumed that all vertices are unique,...
Definition PlannerData.h:175
Encapsulate a termination condition for a motion planner. Planners will call operator() to decide whe...
Definition PlannerTerminationCondition.h:64
ompl::base::Cost bestCost() const
Retrieve the best exact-solution cost found.
Definition AORRTC.cpp:60
void clear() override
Clear all internal datastructures. Planner settings are not affected. Subsequent calls to solve() wil...
Definition AORRTC.cpp:53
void setup() override
Perform extra configuration steps, if needed. This call will also issue a call to ompl::base::SpaceIn...
Definition AORRTC.cpp:65
void getPlannerData(base::PlannerData &data) const override
Get information about the current run of the motion planner. Repeated calls to this function will upd...
Definition AORRTC.cpp:226
void simplifySolution(const base::PathPtr &p, const base::PlannerTerminationCondition &ptc)
Attempt to simplify the current solution path. Stop computation when ptc becomes true at the latest.
Definition AORRTC.cpp:105
base::PlannerStatus solve(const base::PlannerTerminationCondition &ptc) override
Function that can solve the motion planning problem. This function can be called multiple times on th...
Definition AORRTC.cpp:119
This namespace contains sampling based planning routines shared by both planning under geometric cons...
Definition ConstrainedSpaceInformation.h:55
A class to store the exit status of Planner::solve().
Definition PlannerStatus.h:49
@ UNRECOGNIZED_GOAL_TYPE
The goal is of a type that a planner does not recognize.
Definition PlannerStatus.h:60