Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14147


Ignore:
Timestamp:
07/21/16 10:54:47 (8 years ago)
Author:
gkronber
Message:

#1966: finished implementation of 2d bin packing problem using permutation encoding

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  
    164164    <Compile Include="BinPacking2D.cs" />
    165165    <Compile Include="BinUtilizationEvaluator.cs" />
     166    <Compile Include="BottomLefttPermutationDecoder.cs" />
    166167    <Compile Include="ExtremePointPermutationDecoder.cs" />
    167168    <Compile Include="Instances\BPPData.cs" />
     
    174175    <Compile Include="Interfaces\I2DOperator.cs" />
    175176    <Compile Include="Interfaces\I2DPSDecoder.cs" />
     177    <Compile Include="MoveEvaluators\Swap2MoveEvaluator.cs" />
    176178    <Compile Include="MoveEvaluators\TranslocationMoveEvaluator.cs">
    177179      <SubType>Code</SubType>
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/PackingSequenceProblem.cs

    r14146 r14147  
    178178
    179179    private void AddOperators() {
    180       Operators.Add(new StochasticInsertionMultiMoveGenerator());
    181       Operators.Add(new ExhaustiveInsertionMoveGenerator());
    182       Operators.Add(new TranslocationMoveMaker());
    183180      Operators.Add(new TranslocationMoveEvaluator());
    184       Operators.Add(new TranslocationMoveTabuMaker());
     181      Operators.Add(new Swap2MoveEvaluator());
    185182
    186183      Operators.RemoveAll(x => x is SingleObjectiveMoveGenerator);
Note: See TracChangeset for help on using the changeset viewer.