Files

10 lines
322 B
C#
Raw Permalink Normal View History

2026-08-04 11:55:20 +08:00
using System.Threading;
namespace MultiWheelC.TrajectoryPlanning.EMPlanner;
/// <summary>Pure, one-shot EM planning boundary with no scheduler, UI, hardware, or clock dependency.</summary>
public interface IEmPlanningService
{
EmPlanningResult Plan(EmPlanningRequest request, CancellationToken cancellationToken);
}