- Timestamp:
- 02/08/16 21:32:33 (9 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/HeuristicLab.Problems.BinPacking2D-3.3.csproj
r13607 r13611 158 158 </ItemGroup> 159 159 <ItemGroup> 160 <Compile Include="BinPacking2D.cs" /> 160 161 <Compile Include="Decoders\BL\BottomLeftGroupingVectorDecoder.cs" /> 161 162 <Compile Include="Decoders\BL\BottomLeftMultiComponentVectorDecoder.cs" /> -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/PackingPlan2D.cs
r13606 r13611 43 43 } 44 44 public override BinPacking<TwoDimensionalPacking, RectangularPackingBin, RectangularPackingItem> NewBinPacking() { 45 return new BinPacking2D(BinMeasures);45 return new Encodings.PackingEncoding.PackingPlan.BinPacking2D(BinMeasures); 46 46 } 47 47 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/RectangularIdenticalBinPackingProblem.cs
r13606 r13611 104 104 #region Helpers 105 105 protected override void InitializeDecoder() { 106 Operators.RemoveAll(op => op is I3DOperator);106 // Operators.RemoveAll(op => op is I3DOperator); TODO 107 107 108 108 PackingSolutionDecoderParameter.ValidValues.Clear();
Note: See TracChangeset
for help on using the changeset viewer.