Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Selection/3.3/WorstReplacer.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Selection/3.3/WorstReplacer.cs
r16453 r16462 25 25 using HeuristicLab.Optimization; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.Selection { 30 30 [Item("WorstReplacer", "Replaces the worst sub-scopes of the remaining scope with all those (or the best if there are more) from the selected scope.")] 31 [Storable Class]31 [StorableType("9B56E562-0E21-4FED-AB2F-553D49AEC47D")] 32 32 public sealed class WorstReplacer : Replacer, ISingleObjectiveReplacer { 33 33 public override bool CanChangeName { … … 46 46 47 47 [StorableConstructor] 48 private WorstReplacer( bool deserializing) : base(deserializing) { }48 private WorstReplacer(StorableConstructorFlag _) : base(_) { } 49 49 private WorstReplacer(WorstReplacer original, Cloner cloner) : base(original, cloner) { } 50 50 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.