feat: add smoothing algorithm retry runner

This commit is contained in:
梁薄云
2026-07-29 09:37:50 +08:00
parent 69ef08dff5
commit 83940f9749
5 changed files with 619 additions and 0 deletions
@@ -0,0 +1,14 @@
using System.Threading;
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing.Algorithms;
/// <summary>单一平滑方法生成原始几何候选的内部契约。</summary>
internal interface IPathSmoother
{
SmoothingMethod Method { get; }
SmoothingCandidate Smooth(
SmoothingAlgorithmInput input,
double effectiveStrength,
CancellationToken cancellationToken);
}