Didnt like the name EnhancedBestFitEngine, new one isn't great either but it's better

This commit is contained in:
AJ
2025-01-01 00:48:33 -05:00
parent 913064f4f8
commit 08b3aa9182
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ using System.Linq;
namespace SawCut.Nesting
{
public class EnhancedBestFitEngine : IEngine
public class AdvancedFitEngine : IEngine
{
public double StockLength { get; set; }

View File

@@ -23,7 +23,7 @@ namespace SawCut.Nesting
foreach (var bin in bins)
{
var e = new EnhancedBestFitEngine();
var e = new AdvancedFitEngine();
e.MaxBinCount = bin.Quantity;
e.StockLength = bin.Length;
e.Spacing = Spacing;

View File

@@ -52,7 +52,7 @@
<Compile Include="Nesting\IEngine.cs" />
<Compile Include="Nesting\MultiBinEngine.cs" />
<Compile Include="Nesting\Result.cs" />
<Compile Include="Nesting\EnhancedBestFitEngine.cs" />
<Compile Include="Nesting\AdvancedFitEngine.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tolerance.cs" />
</ItemGroup>