Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/14/15 19:52:46 (9 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
Location:
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/PackingBin
Files:
2 edited

Legend:

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

    r13032 r13461  
    3131  [StorableClass]
    3232  public class CuboidPackingBin : CuboidPackingShape, IPackingBin {
    33    
    34     public CuboidPackingBin(int width, int height, int depth) : base (width, height, depth) {}
     33
     34    public CuboidPackingBin(int width, int height, int depth) : base(width, height, depth) { }
    3535
    3636    [StorableConstructor]
     
    4242      return new CuboidPackingBin(this, cloner);
    4343    }
    44     public CuboidPackingBin() : base() {
    45 
     44    public CuboidPackingBin()
     45      : base() {
    4646    }
    4747  }
  • 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.