Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/09/18 12:59:38 (6 years ago)
Author:
rhanghof
Message:

#2817:

  • Adjusted the unit tests
  • Refactoring of the sorter
  • Bugfix on the BinPackerResidualSpaceBestFit packer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Sorting/PackingItemClusteredAreaHeightSorter.cs

    r15618 r15989  
    3838    }
    3939
    40     public Permutation SortPackingItemsByMaterial(IList<PackingItem> items, PackingShape bin, double delta) {
     40    public Permutation SortPackingItemsBySequenceGroup(IList<PackingItem> items, PackingShape bin, double delta) {
    4141      return items.SortByMaterialClusteredAreaHeight(bin, delta);
    4242    }
    4343
    44     public Permutation SortPackingItemsByMaterial(IList<PackingItem> items, PackingShape bin) {
    45       return SortPackingItemsByMaterial(items, bin, 10.0);
     44    public Permutation SortPackingItemsBySequenceGroup(IList<PackingItem> items, PackingShape bin) {
     45      return SortPackingItemsBySequenceGroup(items, bin, 10.0);
    4646    }
    4747  }
Note: See TracChangeset for help on using the changeset viewer.