All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BiEST.h
115 Motion(const base::SpaceInformationPtr &si) : state(si->allocState()), parent(NULL), element(NULL), root(NULL)
Object containing planner generated vertex and edge data. It is assumed that all vertices are unique...
Definition: PlannerData.h:163
PDF< Motion * > startPdf_
The probability distribution function over states in each tree.
Definition: BiEST.h:151
A shared pointer wrapper for ompl::base::ValidStateSampler.
std::shared_ptr< NearestNeighbors< Motion * > > nnStart_
A nearest-neighbors datastructure containing the tree of motions.
Definition: BiEST.h:143
Encapsulate a termination condition for a motion planner. Planners will call operator() to decide whe...
Definition: PlannerTerminationCondition.h:66
std::vector< Motion * > startMotions_
The set of all states in the start tree.
Definition: BiEST.h:147
double distanceFunction(const Motion *a, const Motion *b) const
Compute distance between motions (actually distance between contained states)
Definition: BiEST.h:137
Random number generation. An instance of this class cannot be used by multiple threads at once (membe...
Definition: RandomNumbers.h:58
A class to store the exit status of Planner::solve()
Definition: PlannerStatus.h:48
A shared pointer wrapper for ompl::base::SpaceInformation.
Abstract representation of a container that can perform nearest neighbors queries.
Definition: NearestNeighbors.h:49
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: BiEST.cpp:292
void addMotion(Motion *motion, std::vector< Motion * > &motions, PDF< Motion * > &pdf, std::shared_ptr< NearestNeighbors< Motion * > > nn, const std::vector< Motion * > &neighbors)
Add a motion to the exploration tree.
Definition: BiEST.cpp:275
virtual void clear()
Clear all internal datastructures. Planner settings are not affected. Subsequent calls to solve() wil...
Definition: BiEST.cpp:80
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: BiEST.cpp:116
Motion(const base::SpaceInformationPtr &si)
Constructor that allocates memory for the state.
Definition: BiEST.h:115
virtual void setup()
Perform extra configuration steps, if needed. This call will also issue a call to ompl::base::SpaceIn...
Definition: BiEST.cpp:58
std::pair< base::State *, base::State * > connectionPoint_
The pair of states in each tree connected during planning. Used for PlannerData computation.
Definition: BiEST.h:175
PDF< Motion * >::Element * element
A pointer to the corresponding element in the probability distribution function.
Definition: BiEST.h:130