refactor(engine): rename NestResult to OptimizationResult

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 08:28:12 -04:00
parent 84679b40ce
commit 1c8b35bcfb
2 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ namespace OpenNest
/// <summary>
/// Result of a nest optimization run.
/// </summary>
public class NestResult
public class OptimizationResult
{
/// <summary>
/// The best sequence found: (drawingId, rotation, drawing) tuples in placement order.
@@ -31,7 +31,7 @@ namespace OpenNest
/// </summary>
public interface INestOptimizer
{
NestResult Optimize(List<NestItem> items, Box workArea, NfpCache cache,
OptimizationResult Optimize(List<NestItem> items, Box workArea, NfpCache cache,
Dictionary<int, List<double>> candidateRotations,
CancellationToken cancellation = default);
}