b83d09c3a7
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
194 B
C#
10 lines
194 B
C#
using System.Collections.Generic;
|
|
|
|
namespace OpenNest.Engine.BestFit
|
|
{
|
|
public interface IPairEvaluator
|
|
{
|
|
List<BestFitResult> EvaluateAll(List<PairCandidate> candidates);
|
|
}
|
|
}
|