Fixed wrong name

This commit is contained in:
AJ Isaacs
2024-12-09 10:18:10 -05:00
parent 6c719f6ca5
commit 0b20ac5acf

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Linq;
namespace SawCut.Nesting
@@ -22,7 +23,7 @@ namespace SawCut.Nesting
foreach (var bin in bins)
{
var e = new BestFitWithImproveAttempt();
var e = new EnhancedBestFitEngine();
e.MaxBinCount = bin.Quantity;
e.StockLength = bin.Length;
e.Spacing = Spacing;