Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/13/17 09:47:49 (6 years ago)
Author:
rhanghof
Message:

#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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/BinPacking.cs

    r15473 r15520  
    4848    public TBin BinShape { get; private set; }
    4949
    50     [Storable]
    51     public SortedSet<TPos> ExtremePoints { get; protected set; }
     50   
    5251
    5352    public double PackingDensity {
     
    7170      Items = new ObservableDictionary<int, TItem>();
    7271      BinShape = (TBin)binShape.Clone();
    73       ExtremePoints = new SortedSet<TPos>();
    7472    }
    7573
     
    8886      }
    8987      this.BinShape = (TBin)original.BinShape.Clone(cloner);
    90       this.ExtremePoints = new SortedSet<TPos>(original.ExtremePoints.Select(p => cloner.Clone(p)));
    9188    }
    9289   
Note: See TracChangeset for help on using the changeset viewer.