Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Encodings.PermutationEncoding/3.3/Permutation.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Encodings.PermutationEncoding/3.3/Permutation.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Encodings.PermutationEncoding { 29 29 [Item("Permutation", "Represents a permutation of integer values.")] 30 [Storable Class]30 [StorableType("FBBCFA53-C1AE-4069-907B-99C720F5AC51")] 31 31 public class Permutation : IntArray { 32 32 [Storable] … … 45 45 46 46 [StorableConstructor] 47 protected Permutation( bool deserializing) : base(deserializing) { }47 protected Permutation(StorableConstructorFlag _) : base(_) { } 48 48 protected Permutation(Permutation original, Cloner cloner) 49 49 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.