All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
VFRRT.cpp
91 Eigen::VectorXd ompl::geometric::VFRRT::getNewDirection(const base::State *qnear, const base::State *qrand)
192 ompl::base::PlannerStatus ompl::geometric::VFRRT::solve(const base::PlannerTerminationCondition &ptc)
216 OMPL_INFORM("%s: Starting planning with %u states already in datastructure", getName().c_str(), nn_->size());
Eigen::VectorXd computeAlphaBeta(double omega, const Eigen::VectorXd &vrand, const Eigen::VectorXd &vfield)
Definition: VFRRT.cpp:138
void log(const char *file, int line, LogLevel level, const char *m,...)
Root level logging function. This should not be invoked directly, but rather used via a logging macro...
Definition: Console.cpp:120
virtual void setup()
Perform extra configuration steps, if needed. This call will also issue a call to ompl::base::SpaceIn...
Definition: RRT.cpp:70
A shared pointer wrapper for ompl::base::StateSpace.
double biasedSampling(const Eigen::VectorXd &vrand, const Eigen::VectorXd &vfield, double lambdaScale)
Definition: VFRRT.cpp:114
Encapsulate a termination condition for a motion planner. Planners will call operator() to decide whe...
Definition: PlannerTerminationCondition.h:66
void append(const base::State *state)
Append state to the end of this path. The memory for state is copied.
Definition: PathGeometric.cpp:436
virtual void clear()
Clear all internal datastructures. Planner settings are not affected. Subsequent calls to solve() wil...
Definition: RRT.cpp:60
virtual base::PlannerStatus solve(const base::PlannerTerminationCondition &ptc)
Definition: VFRRT.cpp:192
Motion * extendTree(Motion *m, base::State *rstate, const Eigen::VectorXd &v)
Definition: VFRRT.cpp:152
virtual void sampleGoal(State *st) const =0
Sample a state in the goal region.
Invalid start state or no start state specified.
Definition: PlannerStatus.h:56
void updateExplorationEfficiency(Motion *m)
Definition: VFRRT.cpp:182
Abstract definition of a goal region that can be sampled.
Definition: GoalSampleableRegion.h:49
A class to store the exit status of Planner::solve()
Definition: PlannerStatus.h:48
bool canSample() const
Return true if maxSampleCount() > 0, since in this case samples can certainly be produced.
Definition: GoalSampleableRegion.h:70
A shared pointer wrapper for ompl::base::SpaceInformation.
virtual bool isSatisfied(const State *st) const =0
Return true if the state satisfies the goal constraints.
Eigen::VectorXd getNewDirection(const base::State *qnear, const base::State *qrand)
Definition: VFRRT.cpp:91
VFRRT(const base::SpaceInformationPtr &si, const VectorField &vf, double exploration, double initial_lambda, unsigned int update_freq)
Definition: VFRRT.cpp:49
virtual void setup()
Perform extra configuration steps, if needed. This call will also issue a call to ompl::base::SpaceIn...
Definition: VFRRT.cpp:72
static const unsigned int VFRRT_MEAN_NORM_SAMPLES
Number of sampler to determine mean vector field norm in gVFRRT.
Definition: VFRRT.cpp:45
A shared pointer wrapper for ompl::base::Path.