Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/SASEGASAReunificator.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/SASEGASAReunificator.cs
r16453 r16462 27 27 using HeuristicLab.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Optimization.Operators { … … 35 35 /// </summary> 36 36 [Item("SASEGASAReunificator", "This operator merges the villages (sub-scopes) and redistributes the individuals. It is implemented as described in Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications, CRC Press.")] 37 [Storable Class]37 [StorableType("09433AE4-A51B-40F5-967D-3A2A83EE8814")] 38 38 public class SASEGASAReunificator : SingleSuccessorOperator { 39 39 … … 43 43 44 44 [StorableConstructor] 45 protected SASEGASAReunificator( bool deserializing) : base(deserializing) { }45 protected SASEGASAReunificator(StorableConstructorFlag _) : base(_) { } 46 46 protected SASEGASAReunificator(SASEGASAReunificator original, Cloner cloner) : base(original, cloner) { } 47 47 public SASEGASAReunificator()
Note: See TracChangeset
for help on using the changeset viewer.