Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/09/18 15:46:53 (7 years ago)
Author:
rhanghof
Message:

#2817:

  • Bugfixes for the line projection based extreme point creation
  • Bugfixes for the tests
File:
1 edited

Legend:

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

    r15488 r15585  
    205205                  SortingMethod[] sortings,
    206206                  FittingMethod[] fittings,
    207                   ExtremePointCreationMethod[] ePGeneration,
     207                  ExtremePointCreationMethod[] epCreationMethods,
    208208                  CancellationToken token) {
    209209      SortingMethod? bestSorting = null;
     
    214214      foreach (var fit in fittings) {
    215215        foreach (var sort in sortings) {
    216           foreach (var epCreation in ePGeneration) {
     216          foreach (var epCreation in epCreationMethods) {
    217217            IDecoder<Permutation> decoder = new ExtremePointPermutationDecoder() {
    218218              FittingMethod = fit,
Note: See TracChangeset for help on using the changeset viewer.