Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/14/15 18:59:13 (9 years ago)
Author:
gkronber
Message:

#1966:

  • renamed creatables
  • partially fixed bin packing problem instance provider
File:
1 edited

Legend:

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

    r13032 r13460  
    2929
    3030namespace HeuristicLab.Problems.BinPacking.Problem {
    31   [Item("ISOContainerBinPackingProblem", "Represents a three-dimensional bin-packing problem using two different bin sizes.")]
     31  [Item("Bin Packing Problem (3D, ISO containers) (BPP)", "Represents a three-dimensional bin-packing problem using two different bin sizes.")]
    3232  [StorableClass]
    33   [Creatable("Problems")]
     33  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 320)]
    3434  public class ISOContainerBinPackingProblem : CuboidIdenticalBinPackingProblem {
    3535
     
    170170    #region Helpers
    171171    protected override void InitializeDecoder() {
    172       Operators.RemoveAll(op => typeof(I2DOperator).IsAssignableFrom(op.GetType()));
     172      Operators.RemoveAll(op => op is I2DOperator);
    173173
    174174      PackingSolutionDecoderParameter.ValidValues.Clear();
Note: See TracChangeset for help on using the changeset viewer.