2026-08-03 22:14:37 +08:00
|
|
|
namespace MultiWheelC.TrajectoryPlanning.EMPlanner;
|
|
|
|
|
|
|
|
|
|
public enum EmPlanningStatus
|
|
|
|
|
{
|
|
|
|
|
Success,
|
|
|
|
|
SuccessWithFallback,
|
|
|
|
|
InvalidInput,
|
|
|
|
|
UnsupportedMotionMode,
|
|
|
|
|
StaleVehicleState,
|
|
|
|
|
StateDirectionMismatch,
|
|
|
|
|
InvalidReferencePath,
|
|
|
|
|
ProjectionFailed,
|
|
|
|
|
CorridorInfeasible,
|
|
|
|
|
LateralInfeasible,
|
|
|
|
|
LongitudinalInfeasible,
|
|
|
|
|
StoppingDistanceInsufficient,
|
|
|
|
|
SolverUnavailable,
|
|
|
|
|
SolverTimedOut,
|
|
|
|
|
Cancelled,
|
|
|
|
|
ValidationFailed,
|
|
|
|
|
Superseded,
|
2026-08-06 20:48:44 +08:00
|
|
|
NoProgress,
|
|
|
|
|
TerminalPoseMismatch,
|
|
|
|
|
FullSegmentResourceLimitExceeded,
|
2026-08-03 22:14:37 +08:00
|
|
|
Failed,
|
|
|
|
|
}
|