Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Algorithms.ALPS

  • stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/AgeDistributionAnalyzer.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131
    3232namespace HeuristicLab.Algorithms.ALPS {
    3333  // Based on QualityDistributionAnalyzer
    3434  [Item("AgeDistributionAnalyzer", "Analyzes the distribution of the ages in that it adds a Histogram of them into the result collection.")]
    35   [StorableClass]
     35  [StorableType("714CE0E4-A88F-44A1-A2D0-92F4D8252C0C")]
    3636  public sealed class AgeDistributionAnalyzer : SingleSuccessorOperator, IAnalyzer, IIterationBasedOperator {
    3737
     
    6969
    7070    [StorableConstructor]
    71     private AgeDistributionAnalyzer(bool deserializing)
    72       : base(deserializing) { }
     71    private AgeDistributionAnalyzer(StorableConstructorFlag _) : base(_) { }
    7372    private AgeDistributionAnalyzer(AgeDistributionAnalyzer original, Cloner cloner)
    7473      : base(original, cloner) { }
  • stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/OldestAverageYoungestAgeAnalyzer.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2929using HeuristicLab.Optimization.Operators;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3232
    3333namespace HeuristicLab.Algorithms.ALPS {
    3434  [Item("OldestAverageYoungestAgeAnalyzer", "An operator which calculates the current oldest, average and youngest age in the scope tree.")]
    35   [StorableClass]
     35  [StorableType("1AE2C4EF-BFCB-439C-AD5E-00E7740FD3D0")]
    3636  public sealed class OldestAverageYoungestAgeAnalyzer : AlgorithmOperator, IAnalyzer {
    3737    #region Parameter properties
     
    6767    #region Storing & Cloning
    6868    [StorableConstructor]
    69     private OldestAverageYoungestAgeAnalyzer(bool deserializing) : base(deserializing) { }
     69    private OldestAverageYoungestAgeAnalyzer(StorableConstructorFlag _) : base(_) { }
    7070    private OldestAverageYoungestAgeAnalyzer(OldestAverageYoungestAgeAnalyzer original, Cloner cloner)
    7171      : base(original, cloner) {
  • stable/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/OldestAverageYoungestAgeCalculator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.Operators;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2828
    2929namespace HeuristicLab.Algorithms.ALPS {
    3030  [Item("OldestAverageYoungestAgeCalculator", "An operator which calculates the oldest, average and youngest age of solutions in the scope tree.")]
    31   [StorableClass]
     31  [StorableType("DF4FA02E-C328-4A6E-9096-5BFADFA9F5DE")]
    3232  public sealed class OldestAverageYoungestAgeCalculator : SingleSuccessorOperator {
    3333    public IScopeTreeLookupParameter<DoubleValue> AgeParameter {
     
    4646    #region Storing & Cloning
    4747    [StorableConstructor]
    48     private OldestAverageYoungestAgeCalculator(bool deserializing) : base(deserializing) { }
     48    private OldestAverageYoungestAgeCalculator(StorableConstructorFlag _) : base(_) { }
    4949    private OldestAverageYoungestAgeCalculator(OldestAverageYoungestAgeCalculator original, Cloner cloner) : base(original, cloner) { }
    5050    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.