- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.BinPacking
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Problems.BinPacking (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559 /trunk/HeuristicLab.Problems.BinPacking merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.BinPacking/3.3/3D/PackingShape.cs
r15584 r17097 22 22 using System; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Data; … … 30 30 namespace HeuristicLab.Problems.BinPacking3D { 31 31 [Item("PackingShape (3d)", "Represents the cuboid measures (width, height, depth) of a three-dimensional cuboidic bin-packing object.")] 32 [Storable Class]32 [StorableType("87C5DC4E-A7E3-4853-B6C7-690B3F47DB57")] 33 33 public class PackingShape : PackingShape<PackingPosition>, IComparable<PackingShape> { 34 34 public IFixedValueParameter<IntValue> HeightParameter { … … 58 58 59 59 [StorableConstructor] 60 protected PackingShape( bool deserializing) : base(deserializing) { }60 protected PackingShape(StorableConstructorFlag _) : base(_) { } 61 61 protected PackingShape(PackingShape original, Cloner cloner) 62 62 : base(original, cloner) { … … 118 118 else throw new ArgumentException(string.Format("Cannot compare with object {0}", obj), "obj"); 119 119 } 120 121 120 #endregion 122 121 122 [StorableType(StorableMemberSelection.AllFields, "6dc0b0e2-e165-44e0-a342-71974f0494e3")] 123 123 private struct CuboidDiagonal { 124 124 public int x1;
Note: See TracChangeset
for help on using the changeset viewer.