Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12572


Ignore:
Timestamp:
07/02/15 11:53:46 (9 years ago)
Author:
pfleck
Message:

#2375

  • Fixed Plugin dependencies.
  • Added missing Hook.
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  
    179179    private AlpsOffspringSelectionGeneticAlgorithm(bool deserializing)
    180180      : base(deserializing) { }
     181    [StorableHook(HookType.AfterDeserialization)]
     182    private void AfterDeserialization() {
     183      Initialize();
     184    }
    181185    private AlpsOffspringSelectionGeneticAlgorithm(AlpsOffspringSelectionGeneticAlgorithm original, Cloner cloner)
    182186      : base(original, cloner) {
  • branches/ALPS/HeuristicLab.Algorithms.ALPS.OffspringSelection/3.3/Plugin.cs.frame

    r12330 r12572  
    2222using HeuristicLab.PluginInfrastructure;
    2323
    24 namespace HeuristicLab.Algorithms.ALPS.SteadyState {
     24namespace HeuristicLab.Algorithms.ALPS.OffspringSelection {
    2525  /// <summary>
    2626  /// Plugin class for HeuristicLab.Algorithms.ALPS plugin.
     
    2828  [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$")]
    2929  [PluginFile("HeuristicLab.Algorithms.ALPS.OffspringSelection-3.3.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm", "3.3")]
    3031  [PluginDependency("HeuristicLab.Analysis", "3.3")]
    3132  [PluginDependency("HeuristicLab.Collections", "3.3")]
     
    4142  [PluginDependency("HeuristicLab.Selection", "3.3")]
    4243  [PluginDependency("HeuristicLab.Algorithms.ALPS", "3.3")]
    43   public class HeuristicLabAlgorithmsALPSPlugin : PluginBase {
     44  public class HeuristicLabAlgorithmsALPSOffspringSelectionPlugin : PluginBase {
    4445  }
    4546}
Note: See TracChangeset for help on using the changeset viewer.