Changeset 17097 for stable/HeuristicLab.Problems.BinPacking/3.3/3D/PermutationEncoding/ExtremePointPermutationDecoder.cs
- 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/PermutationEncoding/ExtremePointPermutationDecoder.cs
r15584 r17097 20 20 #endregion 21 21 22 using System;23 22 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;23 using HEAL.Attic; 25 24 using HeuristicLab.Common; 26 25 using System.Collections.Generic; 27 26 using HeuristicLab.Encodings.PermutationEncoding; 28 using System.Linq;29 27 30 28 31 29 namespace HeuristicLab.Problems.BinPacking3D { 32 30 [Item("Extreme-point Permutation Decoder (3d)", "Decodes the permutation and creates a packing solution candidate")] 33 [Storable Class]31 [StorableType("1232374B-6C9C-46A2-B7C2-97F484597D44")] 34 32 public class ExtremePointPermutationDecoder : ExtremePointPermutationDecoderBase { 35 33 36 34 [StorableConstructor] 37 protected ExtremePointPermutationDecoder( bool deserializing) : base(deserializing) { }35 protected ExtremePointPermutationDecoder(StorableConstructorFlag _) : base(_) { } 38 36 protected ExtremePointPermutationDecoder(ExtremePointPermutationDecoder original, Cloner cloner) 39 37 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.