Changeset 14045 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL
- Timestamp:
- 07/12/16 18:23:13 (9 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL/DeepestBottomLeftGroupingVectorDecoder.cs
r13032 r14045 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Problems.BinPacking.Dimensions; 26 using HeuristicLab.Problems.BinPacking.PackingBin; 26 27 27 using HeuristicLab.Problems.BinPacking.PackingItem; 28 28 using HeuristicLab.Encodings.PackingEncoding.PackingPlan; … … 30 30 using HeuristicLab.Problems.BinPacking.Interfaces; 31 31 using HeuristicLab.Encodings.PackingEncoding.GroupingVector; 32 using HeuristicLab.Problems.BinPacking.Shapes; 32 33 33 34 namespace HeuristicLab.Problems.BinPacking.Decoders { 34 35 [Item("Identical bin, three dimensional, GroupingVector-decoder", "<Description missing...>")] 35 36 [StorableClass] 36 public class DeepestBottomLeftGroupingVectorDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem>, I3DGVDecoder {37 public class DeepestBottomLeftGroupingVectorDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem>, I3DGVDecoder { 37 38 public DeepestBottomLeftGroupingVectorDecoder() : base() {} 38 39 [StorableConstructor] … … 45 46 } 46 47 47 public override PackingPlan<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingBinbinMeasures, ItemList<CuboidPackingItem> itemMeasures) {48 public override PackingPlan<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingShape binMeasures, ItemList<CuboidPackingItem> itemMeasures) { 48 49 var solution = encodedSolution as GroupingVectorEncoding; 49 50 if (solution == null) throw new InvalidOperationException("Encoding is not of type GroupingVector"); -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL/DeepestBottomLeftMultiComponentVectorDecoder.cs
r13032 r14045 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Problems.BinPacking.Dimensions; 26 using HeuristicLab.Problems.BinPacking.PackingBin; 26 27 27 using HeuristicLab.Problems.BinPacking.PackingItem; 28 28 using HeuristicLab.Encodings.PackingEncoding.PackingPlan; … … 30 30 using HeuristicLab.Problems.BinPacking.Interfaces; 31 31 using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector; 32 using HeuristicLab.Problems.BinPacking.Shapes; 32 33 33 34 namespace HeuristicLab.Problems.BinPacking.Decoders { 34 35 [Item("Identical bin, three dimensional, MultiComponentVector-decoder", "<Description missing...>")] 35 36 [StorableClass] 36 public class DeepestBottomLeftMultiComponentVectorDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem>, I3DMCVDecoder {37 public class DeepestBottomLeftMultiComponentVectorDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem>, I3DMCVDecoder { 37 38 public DeepestBottomLeftMultiComponentVectorDecoder() : base() { } 38 39 [StorableConstructor] … … 45 46 } 46 47 47 public override PackingPlan<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingBinbinMeasures, ItemList<CuboidPackingItem> itemMeasures) {48 public override PackingPlan<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingShape binMeasures, ItemList<CuboidPackingItem> itemMeasures) { 48 49 var solution = encodedSolution as MultiComponentVectorEncoding; 49 50 if (solution == null) throw new InvalidOperationException("Encoding is not of type MultiComponent Vector"); -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL/DeepestBottomLeftPackingSequenceDecoder.cs
r13032 r14045 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Problems.BinPacking.Dimensions; 26 using HeuristicLab.Problems.BinPacking.PackingBin; 26 27 27 using HeuristicLab.Problems.BinPacking.PackingItem; 28 28 using HeuristicLab.Encodings.PackingEncoding.PackingPlan; … … 30 30 using HeuristicLab.Encodings.PackingEncoding.PackingSequence; 31 31 using HeuristicLab.Problems.BinPacking.Interfaces; 32 using HeuristicLab.Problems.BinPacking.Shapes; 32 33 33 34 namespace HeuristicLab.Problems.BinPacking.Decoders { 34 35 [Item("Identical bin, three dimensional, PackingSequence-decoder", "<Description missing...>")] 35 36 [StorableClass] 36 public class DeepestBottomLeftPackingSequenceDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem>, I3DPSDecoder {37 public class DeepestBottomLeftPackingSequenceDecoder : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem>, I3DPSDecoder { 37 38 public DeepestBottomLeftPackingSequenceDecoder(): base() {} 38 39 [StorableConstructor] … … 45 46 } 46 47 47 public override PackingPlan<ThreeDimensionalPacking, CuboidPacking Bin, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingBinbinMeasures, ItemList<CuboidPackingItem> itemMeasures) {48 public override PackingPlan<ThreeDimensionalPacking, CuboidPackingShape, CuboidPackingItem> CreatePackingPlanFromEncoding(IItem encodedSolution, CuboidPackingShape binMeasures, ItemList<CuboidPackingItem> itemMeasures) { 48 49 var solution = encodedSolution as PackingSequenceEncoding; 49 50 if (solution == null) throw new InvalidOperationException("Encoding is not of type PackingSequence");
Note: See TracChangeset
for help on using the changeset viewer.