Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.RAPGA/3.3/RAPGA.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/RAPGA.cs
r16453 r16462 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Fossil; 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 40 40 [Item("RAPGA", "A relevant alleles preserving genetic algorithm (Affenzeller, M. et al. 2007. Self-adaptive population size adjustment for genetic algorithms. Proceedings of Computer Aided Systems Theory: EuroCAST 2007, Lecture Notes in Computer Science, pp 820–828. Springer).")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 140)] 42 [Storable Class]42 [StorableType("8E326660-354E-4016-B96B-A5B137F766D7")] 43 43 public sealed class RAPGA : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } … … 197 197 198 198 [StorableConstructor] 199 private RAPGA( bool deserializing) : base(deserializing) { }199 private RAPGA(StorableConstructorFlag _) : base(_) { } 200 200 [StorableHook(HookType.AfterDeserialization)] 201 201 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.