Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/ResidualSpaceCalculation/ResidualSpaceCalculatorFactory.cs @ 15520

Last change on this file since 15520 was 15520, checked in by rhanghof, 6 years ago

#2817:

  • Changed the calculation algorithm for creating extreme points by using line based projection
  • Changed the calculation of the residual spaces for line based projection
File size: 380 bytes
RevLine 
[15520]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.BinPacking3D.ResidualSpaceCalculation {
8  public static class ResidualSpaceCalculatorFactory {
9    public static IResidualSpaceCalculator CreateCalculator() {
10      return new ResidualSpaceCalculator();
11    }
12  }
13}
Note: See TracBrowser for help on using the repository browser.