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);
|
|
}
|
|
}
|