|
|
| BasicExtender () |
|
| BasicExtender (XMLNode &_node) |
|
virtual | ~BasicExtender ()=default |
|
|
virtual void | Print (std::ostream &_os) const override |
|
|
virtual bool | Extend (const CfgType &_start, const CfgType &_end, CfgType &_new, LPOutput< MPTraits > &_lp) override |
|
virtual bool | Extend (const CfgType &_start, const CfgType &_end, CfgType &_new, LPOutput< MPTraits > &_lp, CDInfo &_cdInfo) override |
| An optional version if CDInfo is desired. Not required to implement. More...
|
|
virtual bool | Extend (const GroupCfgType &_start, const GroupCfgType &_end, GroupCfgType &_new, GroupLPOutput< MPTraits > &_lp, const Formation &_robotIndexes=Formation()) override |
|
virtual bool | Extend (const GroupCfgType &_start, const GroupCfgType &_end, GroupCfgType &_new, GroupLPOutput< MPTraits > &_lp, CDInfo &_cdInfo, const Formation &_robotIndexes=Formation()) override |
|
|
virtual double | GetMinDistance () const |
| Get the minimum extension distance.
|
|
virtual double | GetMaxDistance () const |
| Get the maximum extension distance.
|
|
|
virtual void | Initialize () |
|
|
const std::string & | GetName () const |
| Get the class name for this object.
|
|
const std::string & | GetLabel () const |
| Get the unique label for this object.
|
|
std::string | GetNameAndLabel () const |
| Get the unique string identifier for this object "m_name::m_label".
|
|
void | SetLabel (const std::string &) |
| Set the unique label for this object.
|
|
|
void | SetMPLibrary (MPLibrary *) noexcept |
| Set the owning MPLibrary.
|
|
MPLibrary * | GetMPLibrary () const noexcept |
| Get the owning MPLibrary.
|
|
bool | IsRunning () const noexcept |
| Check the library's running flag.
|
|
DistanceMetricPointer | GetDistanceMetric (const std::string &) const noexcept |
| Get a distance metric by label from the owning MPLibrary.
|
|
ValidityCheckerPointer | GetValidityChecker (const std::string &) const noexcept |
| Get a validity checker by label from the owning MPLibrary.
|
|
NeighborhoodFinderPointer | GetNeighborhoodFinder (const std::string &) const noexcept |
| Get a neighborhood finder by label from the owning MPLibrary.
|
|
SamplerPointer | GetSampler (const std::string &) const noexcept |
| Get a sampler by label from the owning MPLibrary.
|
|
LocalPlannerPointer | GetLocalPlanner (const std::string &) const noexcept |
| Get a local planner by label from the owning MPLibrary.
|
|
ExtenderPointer | GetExtender (const std::string &) const noexcept |
| Get an extender by label from the owning MPLibrary.
|
|
PathModifierPointer | GetPathModifier (const std::string &) const noexcept |
| Get a path modifier by label from the owning MPLibrary.
|
|
ConnectorPointer | GetConnector (const std::string &) const noexcept |
| Get a connector by label from the owning MPLibrary.
|
|
MetricPointer | GetMetric (const std::string &) const noexcept |
| Get a metric by label from the owning MPLibrary.
|
|
MapEvaluatorPointer | GetMapEvaluator (const std::string &) const noexcept |
| Get a map evaluator by label from the owning MPLibrary.
|
|
MPStrategyPointer | GetMPStrategy (const std::string &) const noexcept |
| Get a strategy by label from the owning MPLibrary.
|
|
MPTraits::MPTools * | GetMPTools () const noexcept |
| Get the MPTools container from the owning MPLibrary.
|
|
|
MPProblem * | GetMPProblem () const noexcept |
| Get the library's current MPProblem.
|
|
Environment * | GetEnvironment () const noexcept |
| Get the current environment.
|
|
MPTask * | GetTask () const noexcept |
| Get the current task.
|
|
GroupTask * | GetGroupTask () const noexcept |
| Get the current group task.
|
|
|
MPSolution * | GetMPSolution () const noexcept |
|
RoadmapType * | GetRoadmap (Robot *const _r=nullptr) const noexcept |
| Get the current free-space roadmap.
|
|
GroupRoadmapType * | GetGroupRoadmap (RobotGroup *const _g=nullptr) const noexcept |
| Get the current free-space group roadmap.
|
|
RoadmapType * | GetBlockRoadmap (Robot *const _r=nullptr) const noexcept |
| Get the current obstacle-space roadmap.
|
|
Path * | GetPath (Robot *const _r=nullptr) const noexcept |
| Get the current best path.
|
|
GroupPath * | GetGroupPath (RobotGroup *const _g=nullptr) const noexcept |
| Get the current best group path.
|
|
StatClass * | GetStatClass () const noexcept |
| Get the current StatClass.
|
|
LocalObstacleMap * | GetLocalObstacleMap () const noexcept |
| Get the local obstacle map.
|
|
GoalTracker * | GetGoalTracker () const noexcept |
| Get the goal tracker.
|
|
|
void | SetName (const std::string &_s) |
|
const std::string & | GetBaseFilename () const |
|
|
bool | Expand (const CfgType &_start, const CfgType &_end, CfgType &_newCfg, double _delta, LPOutput< MPTraits > &_lp, double _posRes, double _oriRes) |
|
bool | Expand (const CfgType &_start, const CfgType &_end, CfgType &_newCfg, double _delta, LPOutput< MPTraits > &_lp, CDInfo &_cdInfo, double _posRes, double _oriRes) |
|
bool | Expand (const GroupCfgType &_start, const GroupCfgType &_end, GroupCfgType &_newCfg, double _delta, GroupLPOutput< MPTraits > &_lp, double _posRes, double _oriRes, const Formation &_robotIndexes=Formation()) |
| GroupCfg Overrides.
|
|
bool | Expand (const GroupCfgType &_start, const GroupCfgType &_end, GroupCfgType &_newCfg, double _delta, GroupLPOutput< MPTraits > &_lp, CDInfo &_cdInfo, double _posRes, double _oriRes, const Formation &_robotIndexes=Formation()) |
|
template<class
MPTraits>
class BasicExtender< MPTraits >
Basic straight-line extension.
Extends in straight-line through
until either the target is reached,
is encountered, or the max distance is exceeded.