- Timestamp:
- 01/28/16 19:35:42 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingPlans/BinPacking.cs
r13032 r13578 41 41 42 42 [Storable] 43 public ObservableDictionary<int, I> ItemMeasures { get; private set; } 43 public ObservableDictionary<int, I> ItemMeasures { get; private set; } // TODO: renamed to item 44 44 45 45 [Storable] … … 47 47 48 48 [Storable] 49 //public HashSet<D> ExtremePoints { get; protected set; }50 49 public SortedSet<D> ExtremePoints { get; protected set; } 51 50 … … 55 54 #endregion Properties 56 55 57 p ublicBinPacking(B binMeasures) : base() {56 protected BinPacking(B binMeasures) : base() { 58 57 ItemPositions = new ObservableDictionary<int, D>(); 59 58 ItemMeasures = new ObservableDictionary<int, I>(); 60 59 BinMeasures = (B)binMeasures.Clone(); 61 60 OccupationLayers = new Dictionary<int, List<int>>(); 62 InitializeOccupationLayers(); 61 InitializeOccupationLayers(); // TODO 63 62 } 64 63
Note: See TracChangeset
for help on using the changeset viewer.