Changeset 9563 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/MultiComponentVector
- Timestamp:
- 06/02/13 04:26:26 (12 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/MultiComponentVector
- Files:
-
- 30 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/MultiComponentVector/MultiComponentVectorEncoding.cs
r9495 r9563 46 46 return nrOfItems; 47 47 } 48 } 48 } 49 49 50 50 [StorableConstructor] … … 64 64 : base() { 65 65 PackingInformations = new ObservableDictionary<int, ItemList<PackingInformation>>(); 66 } 66 } 67 67 68 68 public override string ToString() { … … 95 95 return PackingInformations.GetHashCode(); 96 96 } 97 97 98 } 98 99 -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/MultiComponentVector/MultiComponentVectorRandomCreator.cs
r9495 r9563 76 76 } 77 77 78 protected override I PackingSolutionEncodingCreateSolution() {78 protected override IItem CreateSolution() { 79 79 return Apply(PackingItemsParameter.ActualValue.Value, LowerBoundParameter.ActualValue.Value, RandomParameter.ActualValue, SortedSequenceParameter.Value.Value); 80 80 }
Note: See TracChangeset
for help on using the changeset viewer.