Changeset 14147
- Timestamp:
- 07/21/16 10:54:47 (8 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/HeuristicLab.Problems.BinPacking2D-3.3.csproj
r14146 r14147 164 164 <Compile Include="BinPacking2D.cs" /> 165 165 <Compile Include="BinUtilizationEvaluator.cs" /> 166 <Compile Include="BottomLefttPermutationDecoder.cs" /> 166 167 <Compile Include="ExtremePointPermutationDecoder.cs" /> 167 168 <Compile Include="Instances\BPPData.cs" /> … … 174 175 <Compile Include="Interfaces\I2DOperator.cs" /> 175 176 <Compile Include="Interfaces\I2DPSDecoder.cs" /> 177 <Compile Include="MoveEvaluators\Swap2MoveEvaluator.cs" /> 176 178 <Compile Include="MoveEvaluators\TranslocationMoveEvaluator.cs"> 177 179 <SubType>Code</SubType> -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/PackingSequenceProblem.cs
r14146 r14147 178 178 179 179 private void AddOperators() { 180 Operators.Add(new StochasticInsertionMultiMoveGenerator());181 Operators.Add(new ExhaustiveInsertionMoveGenerator());182 Operators.Add(new TranslocationMoveMaker());183 180 Operators.Add(new TranslocationMoveEvaluator()); 184 Operators.Add(new TranslocationMoveTabuMaker());181 Operators.Add(new Swap2MoveEvaluator()); 185 182 186 183 Operators.RemoveAll(x => x is SingleObjectiveMoveGenerator);
Note: See TracChangeset
for help on using the changeset viewer.