37 #include "ompl/base/PlannerStatus.h"
44 return std::string(
"Invalid start");
46 return std::string(
"Invalid goal");
48 return std::string(
"Unrecognized goal type");
50 return std::string(
"Timeout");
52 return std::string(
"Approximate solution");
54 return std::string(
"Exact solution");
56 return std::string(
"Crash");
58 return std::string(
"Unknown status");
@ UNRECOGNIZED_GOAL_TYPE
The goal is of a type that a planner does not recognize.
@ APPROXIMATE_SOLUTION
The planner found an approximate solution.
@ CRASH
The planner crashed.
std::string asString() const
Return a string representation.
@ TIMEOUT
The planner failed to find a solution.
@ INVALID_GOAL
Invalid goal state.
@ EXACT_SOLUTION
The planner found an exact solution.
@ INVALID_START
Invalid start state or no start state specified.