- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ALPS
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.ALPS (added) merged: 16452-16454,16462,16529,16539,16558-16559 /trunk/HeuristicLab.Algorithms.ALPS merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.ALPS/3.3/EldersSelector.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Selection; 30 30 … … 32 32 33 33 [Item("EldersSelector", "Select all individuals which are too old for their current layer.")] 34 [Storable Class]34 [StorableType("5C81CE34-F8D4-4B92-A2E4-A62332D68B1C")] 35 35 public sealed class EldersSelector : Selector { 36 36 public IScopeTreeLookupParameter<DoubleValue> AgeParameter { … … 48 48 49 49 [StorableConstructor] 50 private EldersSelector(bool deserializing) 51 : base(deserializing) { } 50 private EldersSelector(StorableConstructorFlag _) : base(_) { } 52 51 private EldersSelector(EldersSelector original, Cloner cloner) 53 52 : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.