Changeset 14047 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL
- Timestamp:
- 07/12/16 19:44:08 (8 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
r14046 r14047 45 45 var solution = encodedSolution as GroupingVectorEncoding; 46 46 if (solution == null) throw new InvalidOperationException("Encoding is not of type GroupingVector"); 47 PackingPlan3D result = new PackingPlan3D(binMeasures);47 Solution result = new Solution(binMeasures); 48 48 result.Pack(solution, itemMeasures); 49 49 return result; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL/DeepestBottomLeftMultiComponentVectorDecoder.cs
r14046 r14047 45 45 var solution = encodedSolution as MultiComponentVectorEncoding; 46 46 if (solution == null) throw new InvalidOperationException("Encoding is not of type MultiComponent Vector"); 47 PackingPlan3D result = new PackingPlan3D(binMeasures);47 Solution result = new Solution(binMeasures); 48 48 result.Pack(solution, itemMeasures); 49 49 return result; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Decoders/DBL/DeepestBottomLeftPackingSequenceDecoder.cs
r14046 r14047 45 45 var solution = encodedSolution as PackingSequenceEncoding; 46 46 if (solution == null) throw new InvalidOperationException("Encoding is not of type PackingSequence"); 47 PackingPlan3D result = new PackingPlan3D(binMeasures);47 Solution result = new Solution(binMeasures); 48 48 result.Pack(solution, itemMeasures); 49 49 return result;
Note: See TracChangeset
for help on using the changeset viewer.