Changeset 13611
- Timestamp:
- 02/08/16 21:32:33 (9 years ago)
- Location:
- branches/HeuristicLab.BinPacking
- Files:
-
- 6 edited
- 1 moved
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(); -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/HeuristicLab.Problems.BinPacking3D-3.3.csproj
r13609 r13611 178 178 <Compile Include="MoveEvaluators\PackingMoveEvaluator3DMCV.cs" /> 179 179 <Compile Include="MoveEvaluators\PackingMoveEvaluator3DPS.cs" /> 180 <Compile Include="PackingPlan3D.cs" /> 180 181 <Compile Include="PackingRatioCuboidIdenticalBinEvaluator.cs" /> 181 182 <Compile Include="Plugin.cs" /> -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingPlans/PackingPlan.cs
r13607 r13611 24 24 using System.Linq; 25 25 using HeuristicLab.Problems.BinPacking.Interfaces; 26 using HeuristicLab.Problems.BinPacking.PackingItem;27 26 using HeuristicLab.Problems.BinPacking.Shapes; 28 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 31 30 using HeuristicLab.Data; 32 31 using HeuristicLab.Collections; 33 using HeuristicLab.Problems.BinPacking.Dimensions;34 using HeuristicLab.Problems.BinPacking.PackingBin;35 32 using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector; 36 33 using HeuristicLab.Encodings.PackingEncoding.GroupingVector; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/HeuristicLab.Problems.BinPacking-3.3.csproj
r13608 r13611 215 215 <Compile Include="Encodings\MultiComponentVector\MultiComponentVectorRandomCreator.cs" /> 216 216 <Compile Include="Encodings\MultiComponentVector\ThreeWayMultiComponentVectorManipulator.cs" /> 217 <Compile Include="Encodings\PackingPlans\BinPacking3D.cs" />218 217 <Compile Include="Encodings\PackingPlans\BinPacking.cs" /> 219 218 <Compile Include="Encodings\PackingPlans\PackingPlan.cs" /> … … 251 250 <Compile Include="Encodings\PackingSolutionCrossover.cs" /> 252 251 <Compile Include="Encodings\PackingSolutionManipulator.cs" /> 252 <Compile Include="Evaluators\BinUtilizationRegularIdenticalBinEvaluator.cs" /> 253 <Compile Include="Evaluators\PackingPlanEvaluationAlgorithm.cs" /> 254 <Compile Include="Evaluators\PackingPlanEvaluator.cs" /> 255 <Compile Include="Evaluators\PackingRatioRegularIdenticalBinEvaluator.cs" /> 256 <Compile Include="Evaluators\RegularSimpleRotationIdenticalBinPackingPlanEvaluator.cs" /> 253 257 <Compile Include="Instances\BPPData.cs" /> 254 258 <Compile Include="Instances\BPPInstanceProvider.cs" /> … … 276 280 <Compile Include="PackingDimensions.cs" /> 277 281 <Compile Include="PackingMoveEvaluator.cs" /> 278 <Compile Include="PackingPlan3D.cs" />279 282 <Compile Include="Interfaces\IRegularPackingShape.cs" /> 280 283 <Compile Include="Interfaces\IPackingBin.cs" />
Note: See TracChangeset
for help on using the changeset viewer.