Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/09/13 15:03:41 (11 years ago)
Author:
jhelm
Message:

#1966: Fixed some problems in MCV-move operators; Added parts of potvin-encoding implementation;

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Problem/CuboidIdenticalBinPackingProblem.cs

    r9440 r9473  
    4444using HeuristicLab.Problems.Instances;
    4545using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector;
     46using HeuristicLab.Encodings.PackingEncoding.Potvin;
    4647
    4748namespace HeuristicLab.Problems.BinPacking.Problem {
     
    125126      } else if (SolutionCreator is MultiComponentVectorRandomCreator) {
    126127        PackingSolutionDecoder = new ExtremePointMultiComponentVectorDecoder3D();
     128      } else if (SolutionCreator is PotvinRandomCreator) {
     129        PackingSolutionDecoder = new ExtremePointPotvinDecoder3D();
    127130      } else {
    128131        string error = "The given problem does not support the selected solution-creator.";
Note: See TracChangeset for help on using the changeset viewer.