Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/14/15 19:52:46 (8 years ago)
Author:
gkronber
Message:

#1966:

  • used Items instead of NamedItems and adapted views (Names/Descriptions) were not set anyway
  • fixed problems identified by Essential unit tests
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/PackingBin/RectangularPackingBin.cs

    r13032 r13461  
    3232
    3333    public RectangularPackingBin(int width, int height) : base(width, height) { }
    34     public RectangularPackingBin() : base() {
     34    public RectangularPackingBin()
     35      : base() {
    3536
    3637    }
     
    4041    protected RectangularPackingBin(RectangularPackingBin original, Cloner cloner)
    4142      : base(original, cloner) {
    42     }             
     43    }
    4344    public override IDeepCloneable Clone(Cloner cloner) {
    4445      return new RectangularPackingBin(this, cloner);
Note: See TracChangeset for help on using the changeset viewer.