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:
8 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/CrowdingAnalyzer.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.
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    31   [StorableClass]
     31  [StorableType("F06FB45C-051E-4AD8-BD82-16DA9DCBCACB")]
    3232  [Item("CrowdingAnalyzer", "The mean crowding distance for each point of the Front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
    3333  public class CrowdingAnalyzer : MOTFAnalyzer {
     
    4242
    4343    [StorableConstructor]
    44     protected CrowdingAnalyzer(bool deserializing) : base(deserializing) { }
     44    protected CrowdingAnalyzer(StorableConstructorFlag _) : base(_) { }
    4545    public CrowdingAnalyzer(CrowdingAnalyzer original, Cloner cloner)
    4646      : base(original, cloner) {
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/GenerationalDistanceAnalyzer.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.
     
    2020#endregion
    2121
    22 using System;
    2322using System.Linq;
    2423using HeuristicLab.Common;
     
    2726using HeuristicLab.Optimization;
    2827using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    3029
    3130namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    32   [StorableClass]
     31  [StorableType("EBC72F16-E329-4D18-800C-8642EFD0F05C")]
    3332  [Item("GenerationalDistanceAnalyzer", "The generational distance between the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
    3433  public class GenerationalDistanceAnalyzer : MOTFAnalyzer {
     
    4948
    5049    [StorableConstructor]
    51     protected GenerationalDistanceAnalyzer(bool deserializing) : base(deserializing) { }
     50    protected GenerationalDistanceAnalyzer(StorableConstructorFlag _) : base(_) { }
    5251    protected GenerationalDistanceAnalyzer(GenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { }
    5352    public override IDeepCloneable Clone(Cloner cloner) {
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/HypervolumeAnalyzer.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.Problems.TestFunctions.MultiObjective {
    33   [StorableClass]
     33  [StorableType("13D363E4-76FF-4A5A-9B2C-767D9E880E4B")]
    3434  [Item("HypervolumeAnalyzer", "Computes the enclosed Hypervolume between the current front and a given reference Point")]
    3535  public class HypervolumeAnalyzer : MOTFAnalyzer {
     
    5050
    5151    [StorableConstructor]
    52     protected HypervolumeAnalyzer(bool deserializing)
    53       : base(deserializing) {
     52    protected HypervolumeAnalyzer(StorableConstructorFlag _) : base(_) {
    5453    }
    5554
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/InvertedGenerationalDistanceAnalyzer.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.
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    31   [StorableClass]
     31  [StorableType("EC99F3C1-D8D2-4738-9523-0D07438647A5")]
    3232  [Item("InvertedGenerationalDistanceAnalyzer", "The inverted generational distance between the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
    3333  public class InvertedGenerationalDistanceAnalyzer : MOTFAnalyzer {
     
    5656
    5757    [StorableConstructor]
    58     protected InvertedGenerationalDistanceAnalyzer(bool deserializing) : base(deserializing) { }
     58    protected InvertedGenerationalDistanceAnalyzer(StorableConstructorFlag _) : base(_) { }
    5959    protected InvertedGenerationalDistanceAnalyzer(InvertedGenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { }
    6060    public override IDeepCloneable Clone(Cloner cloner) {
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/MOTFAnalyzer.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.
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030
    3131namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    3232
    33   [StorableClass]
     33  [StorableType("CFBB2CAB-C1B7-4F14-9A01-6D5624B7B681")]
    3434  public abstract class MOTFAnalyzer : SingleSuccessorOperator, IMultiObjectiveTestFunctionAnalyzer {
    3535    public virtual bool EnabledByDefault { get { return true; } }
     
    5454
    5555    [StorableConstructor]
    56     protected MOTFAnalyzer(bool deserializing) : base(deserializing) { }
     56    protected MOTFAnalyzer(StorableConstructorFlag _) : base(_) { }
    5757    protected MOTFAnalyzer() {
    5858      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The qualities of the parameter vector."));
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/ScatterPlotAnalyzer.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.
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    31   [StorableClass]
     31  [StorableType("720E2726-7F31-4425-B478-327D24BA2FF3")]
    3232  [Item("ScatterPlotAnalyzer", "Creates a Scatterplot for the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
    3333  public class ScatterPlotAnalyzer : MOTFAnalyzer {
     
    4343
    4444    [StorableConstructor]
    45     protected ScatterPlotAnalyzer(bool deserializing) : base(deserializing) { }
     45    protected ScatterPlotAnalyzer(StorableConstructorFlag _) : base(_) { }
    4646    protected ScatterPlotAnalyzer(ScatterPlotAnalyzer original, Cloner cloner) : base(original, cloner) { }
    4747    public override IDeepCloneable Clone(Cloner cloner) {
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/SpacingAnalyzer.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.Data;
    2626using HeuristicLab.Optimization;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2828
    2929namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    30   [StorableClass]
     30  [StorableType("F32027A7-3116-4864-A404-820F866BFD65")]
    3131  [Item("SpacingAnalyzer", "The spacing of the current front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
    3232  public class SpacingAnalyzer : MOTFAnalyzer {
     
    3636    }
    3737    [StorableConstructor]
    38     protected SpacingAnalyzer(bool deserializing) : base(deserializing) { }
     38    protected SpacingAnalyzer(StorableConstructorFlag _) : base(_) { }
    3939
    4040
Note: See TracChangeset for help on using the changeset viewer.