Free cookie consent management tool by TermsFeed Policy Generator

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

#2350

  • Fixed Plugin dependencies.
  • Added missing Hook.
  • Sealed some classes and fixed some access modifier.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ALPS/HeuristicLab.Algorithms.ALPS.SteadyState/3.3/AlpsSsGeneticAlgorithm.cs

    r12549 r12571  
    3939  [Creatable("Algorithms")]
    4040  [StorableClass]
    41   public class AlpsSsGeneticAlgorithm : Alps {
     41  public sealed class AlpsSsGeneticAlgorithm : Alps {
    4242    #region Parameter Properties
    4343    private IValueParameter<IntValue> LayerSizeParameter {
     
    113113    private AlpsSsGeneticAlgorithm(bool deserializing)
    114114      : base(deserializing) { }
     115    [StorableHook(HookType.AfterDeserialization)]
     116    private void AfterDeserialization() {
     117      Initialize();
     118    }
    115119    private AlpsSsGeneticAlgorithm(AlpsSsGeneticAlgorithm original, Cloner cloner)
    116120      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.