- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.BinPacking
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Problems.BinPacking (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.BinPacking/3.3/PackingPlan.cs
r15583 r16565 22 22 using System; 23 23 using System.Linq; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Common; … … 29 29 30 30 namespace HeuristicLab.Problems.BinPacking { 31 [Storable Class]31 [StorableType("2E5A4B2A-EB2B-49F8-9BE8-45DA1A421F3E")] 32 32 public abstract class PackingPlan<D, B, I> : Item 33 33 where D : class, IPackingPosition … … 78 78 79 79 [StorableConstructor] 80 protected PackingPlan( bool deserializing) : base(deserializing) { }80 protected PackingPlan(StorableConstructorFlag _) : base(_) { } 81 81 protected PackingPlan(PackingPlan<D, B, I> original, Cloner cloner) 82 82 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.