Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/16 19:35:42 (8 years ago)
Author:
gkronber
Message:

#1966: implemented visualization for 2d packings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingPlans/BinPacking.cs

    r13032 r13578  
    4141
    4242    [Storable]
    43     public ObservableDictionary<int, I> ItemMeasures { get; private set; }
     43    public ObservableDictionary<int, I> ItemMeasures { get; private set; } // TODO: renamed to item
    4444
    4545    [Storable]
     
    4747
    4848    [Storable]
    49     //public HashSet<D> ExtremePoints { get; protected set; }
    5049    public SortedSet<D> ExtremePoints { get; protected set; }
    5150
     
    5554    #endregion Properties
    5655
    57     public BinPacking(B binMeasures) : base() {   
     56    protected BinPacking(B binMeasures) : base() {   
    5857      ItemPositions = new ObservableDictionary<int, D>();
    5958      ItemMeasures = new ObservableDictionary<int, I>();
    6059      BinMeasures = (B)binMeasures.Clone();
    6160      OccupationLayers = new Dictionary<int, List<int>>();
    62       InitializeOccupationLayers();
     61      InitializeOccupationLayers(); // TODO
    6362    }
    6463
Note: See TracChangeset for help on using the changeset viewer.