Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/ProgressiveOffspringPreserver.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/ProgressiveOffspringPreserver.cs
r16453 r16462 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Algorithms.RAPGA { … … 37 37 /// </remarks> 38 38 [Item("ProgressiveOffspringPreserver", "An operator that progressively selects offspring by adding it to a scope list. The operator also performs duplication control.")] 39 [Storable Class]39 [StorableType("36A99B15-7DF3-481A-8D76-24BF4ED7B6F8")] 40 40 public sealed class ProgressiveOffspringPreserver : SingleSuccessorOperator { 41 41 #region Parameter Properties … … 73 73 74 74 [StorableConstructor] 75 private ProgressiveOffspringPreserver( bool deserializing) : base(deserializing) { }75 private ProgressiveOffspringPreserver(StorableConstructorFlag _) : base(_) { } 76 76 private ProgressiveOffspringPreserver(ProgressiveOffspringPreserver original, Cloner cloner) : base(original, cloner) { } 77 77 public ProgressiveOffspringPreserver()
Note: See TracChangeset
for help on using the changeset viewer.