using System.Collections.Generic; namespace OpenNest.Engine.BestFit { public interface IPairEvaluator { List EvaluateAll(List candidates); } }