- Timestamp:
- 07/02/15 11:53:46 (9 years ago)
- Location:
- branches/ALPS/HeuristicLab.Algorithms.ALPS.OffspringSelection/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Algorithms.ALPS.OffspringSelection/3.3/AlpsOffspringSelectionGeneticAlgorithm.cs
r12550 r12572 179 179 private AlpsOffspringSelectionGeneticAlgorithm(bool deserializing) 180 180 : base(deserializing) { } 181 [StorableHook(HookType.AfterDeserialization)] 182 private void AfterDeserialization() { 183 Initialize(); 184 } 181 185 private AlpsOffspringSelectionGeneticAlgorithm(AlpsOffspringSelectionGeneticAlgorithm original, Cloner cloner) 182 186 : base(original, cloner) { -
branches/ALPS/HeuristicLab.Algorithms.ALPS.OffspringSelection/3.3/Plugin.cs.frame
r12330 r12572 22 22 using HeuristicLab.PluginInfrastructure; 23 23 24 namespace HeuristicLab.Algorithms.ALPS. SteadyState{24 namespace HeuristicLab.Algorithms.ALPS.OffspringSelection { 25 25 /// <summary> 26 26 /// Plugin class for HeuristicLab.Algorithms.ALPS plugin. … … 28 28 [Plugin("HeuristicLab.Algorithms.ALPS.OffspringSelection", "Provides a version of the Age-Layered Population Structure (ALPS) which uses aspects of Offspring Selection.", "3.3.11.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.ALPS.OffspringSelection-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm", "3.3")] 30 31 [PluginDependency("HeuristicLab.Analysis", "3.3")] 31 32 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 41 42 [PluginDependency("HeuristicLab.Selection", "3.3")] 42 43 [PluginDependency("HeuristicLab.Algorithms.ALPS", "3.3")] 43 public class HeuristicLabAlgorithmsALPS Plugin : PluginBase {44 public class HeuristicLabAlgorithmsALPSOffspringSelectionPlugin : PluginBase { 44 45 } 45 46 }
Note: See TracChangeset
for help on using the changeset viewer.