Loading...
Searching...
No Matches
Thunder.h
173 bool reversePathIfNecessary(ompl::geometric::PathGeometric &path1, ompl::geometric::PathGeometric &path2);
A shared pointer wrapper for ompl::base::PlannerData.
A shared pointer wrapper for ompl::base::Planner.
Encapsulate a termination condition for a motion planner. Planners will call operator() to decide whe...
Definition PlannerTerminationCondition.h:64
The Thunder Framework's Retrieve-Repair component.
Definition ThunderRetrieveRepair.h:77
void setRepairPlanner(const base::PlannerPtr &planner)
Set the planner that will be used for repairing invalid paths recalled from experience.
Definition ThunderRetrieveRepair.cpp:91
Create the set of classes typically needed to solve a geometric problem.
Definition ExperienceSetup.h:57
Built off of SimpleSetup but provides support for planning from experience.
Definition Thunder.h:87
bool reversePathIfNecessary(ompl::geometric::PathGeometric &path1, ompl::geometric::PathGeometric &path2)
If path1 and path2 have a better start/goal match when reverse, then reverse path2.
Definition Thunder.cpp:480
void printResultsInfo(std::ostream &out=std::cout) const override
Display debug data about potential available solutions.
Definition Thunder.cpp:397
bool doPostProcessing() override
Allow accumlated experiences to be processed.
Definition Thunder.cpp:507
void printLogs(std::ostream &out=std::cout) const override
Display debug data about overall results from Thunder since being loaded.
Definition Thunder.cpp:433
base::PlannerStatus solve(double time=1.0) override
Run the planner for up to a specified amount of time (default is 1 second)
Definition Thunder.cpp:379
void print(std::ostream &out=std::cout) const override
Print information about the current setup.
Definition Thunder.cpp:407
void clear() override
Clear all planning data. This only includes data generated by motion plan computation....
Definition Thunder.cpp:151
bool saveIfChanged() override
Save the experience database to file if there has been a change.
Definition Thunder.cpp:391
std::vector< ompl::geometric::PathGeometric > queuedSolutionPaths_
Accumulated experiences to be later added to experience database.
Definition Thunder.h:198
std::size_t getExperiencesCount() const override
Get the total number of paths stored in the database.
Definition Thunder.cpp:463
bool dualThreadScratchEnabled_
Definition Thunder.h:189
ompl::geometric::ThunderRetrieveRepair & getRetrieveRepairPlanner() const
Get a pointer to the retrieve repair planner.
Definition Thunder.h:115
ompl::tools::ThunderDBPtr getExperienceDB()
Hook for getting access to debug data.
Definition Thunder.cpp:502
ompl::tools::ThunderDBPtr experienceDB_
A shared object between all the planners for saving and loading previous experience.
Definition Thunder.h:195
void setup() override
This method will create the necessary classes for planning. The solve() method will call this functio...
Definition Thunder.cpp:71
void setPlannerAllocator(const base::PlannerAllocator &pa)
Set the planner allocator to use. This is only used if no planner has been set. This is optional – a ...
Definition Thunder.cpp:167
ompl::tools::ParallelPlanPtr pp_
Instance of parallel planning to use for computing solutions in parallel.
Definition Thunder.h:192
void convertPlannerData(const ompl::base::PlannerDataPtr &plannerData, ompl::geometric::PathGeometric &path)
Convert PlannerData to PathGeometric. Assume ordering of vertices is order of path.
Definition Thunder.cpp:473
void setRepairPlanner(const base::PlannerPtr &planner) override
Set the planner to use for repairing experience paths inside the ThunderRetrieveRepair planner....
Definition Thunder.h:123
void getAllPlannerDatas(std::vector< ompl::base::PlannerDataPtr > &plannerDatas) const override
Get a vector of all the planning data in the database.
Definition Thunder.cpp:468
std::function< PlannerPtr(const SpaceInformationPtr &)> PlannerAllocator
Definition of a function that can allocate a planner.
Definition Planner.h:437
Main namespace. Contains everything in this library.
Definition MultiLevelPlanarManipulatorDemo.cpp:66
A class to store the exit status of Planner::solve()
Definition PlannerStatus.h:49