Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/3D/PermutationEncoding/ExtremePointPermutationDecoder.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/3D/PermutationEncoding/ExtremePointPermutationDecoder.cs
r15583 r16462 20 20 #endregion 21 21 22 using System;23 22 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;23 using HEAL.Fossil; 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.