Changeset 16958 for branches/2457_ExpertSystem/HeuristicLab.Encodings.PermutationEncoding/3.3/Creators
- Timestamp:
- 05/15/19 14:52:20 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Encodings.PermutationEncoding/3.3/Creators/PreexistingPermutationCreator.cs
r13713 r16958 20 20 #endregion 21 21 22 using HEAL.Attic; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; … … 26 27 using HeuristicLab.Optimization; 27 28 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;29 29 using HeuristicLab.Random; 30 30 … … 34 34 /// </summary> 35 35 [Item("PreexistingPermutationCreator", "An operator which creates a new permutation of integer values from a set of given permutations.")] 36 [Storable Class]36 [StorableType("D6EC71C0-2AC1-461B-B684-13352AC88A8C")] 37 37 public sealed class PreexistingPermutationCreator : InstrumentedOperator, IPermutationCreator, IPreexistingSolutionCreator, IStochasticOperator { 38 38 public override bool CanChangeName { … … 65 65 66 66 [StorableConstructor] 67 private PreexistingPermutationCreator( bool deserializing) : base(deserializing) { }67 private PreexistingPermutationCreator(StorableConstructorFlag _) : base(_) { } 68 68 private PreexistingPermutationCreator(PreexistingPermutationCreator original, Cloner cloner) : base(original, cloner) { } 69 69 public PreexistingPermutationCreator()
Note: See TracChangeset
for help on using the changeset viewer.