Didnt like the name EnhancedBestFitEngine, new one isn't great either but it's better
This commit is contained in:
@@ -7,7 +7,7 @@ using System.Linq;
|
|||||||
|
|
||||||
namespace SawCut.Nesting
|
namespace SawCut.Nesting
|
||||||
{
|
{
|
||||||
public class EnhancedBestFitEngine : IEngine
|
public class AdvancedFitEngine : IEngine
|
||||||
{
|
{
|
||||||
public double StockLength { get; set; }
|
public double StockLength { get; set; }
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@ namespace SawCut.Nesting
|
|||||||
|
|
||||||
foreach (var bin in bins)
|
foreach (var bin in bins)
|
||||||
{
|
{
|
||||||
var e = new EnhancedBestFitEngine();
|
var e = new AdvancedFitEngine();
|
||||||
e.MaxBinCount = bin.Quantity;
|
e.MaxBinCount = bin.Quantity;
|
||||||
e.StockLength = bin.Length;
|
e.StockLength = bin.Length;
|
||||||
e.Spacing = Spacing;
|
e.Spacing = Spacing;
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
<Compile Include="Nesting\IEngine.cs" />
|
<Compile Include="Nesting\IEngine.cs" />
|
||||||
<Compile Include="Nesting\MultiBinEngine.cs" />
|
<Compile Include="Nesting\MultiBinEngine.cs" />
|
||||||
<Compile Include="Nesting\Result.cs" />
|
<Compile Include="Nesting\Result.cs" />
|
||||||
<Compile Include="Nesting\EnhancedBestFitEngine.cs" />
|
<Compile Include="Nesting\AdvancedFitEngine.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Tolerance.cs" />
|
<Compile Include="Tolerance.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user