Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/GenerationalDistanceAnalyzer.cs

Last change on this file was 16310, checked in by bwerth, 5 years ago

#2943 worked on MOBasicProblem and MOAnalyzers

File size: 3.1 KB
RevLine 
[13672]1#region License Information
2/* HeuristicLab
[15583]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[13672]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
[14044]21
[14097]22using System;
[14044]23using System.Linq;
[13672]24using HeuristicLab.Common;
[13725]25using HeuristicLab.Core;
[13672]26using HeuristicLab.Data;
27using HeuristicLab.Optimization;
[13725]28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[13672]30
[14111]31namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
[13725]32  [StorableClass]
[16310]33  [Item("GenerationalDistanceAnalyzer", "This analyzer is functionally equivalent to the GenerationalDistanceAnalyzer in HeuristicLab.Analysis, but is kept as not to break backwards compatibility")]
[13725]34  public class GenerationalDistanceAnalyzer : MOTFAnalyzer {
[14044]35
36    private IFixedValueParameter<DoubleValue> DampeningParameter {
[16310]37      get => (IFixedValueParameter<DoubleValue>)Parameters["Dampening"];
38      set => Parameters["Dampening"].ActualValue = value;
[13672]39    }
[14044]40
41    public double Dampening {
[16310]42      get => DampeningParameter.Value.Value;
43      set => DampeningParameter.Value.Value = value;
[14044]44    }
45
[16310]46    public IResultParameter<DoubleValue> GenerationalDistanceResultParameter => (IResultParameter<DoubleValue>)Parameters["Generational Distance"];
[14097]47
[13725]48    [StorableConstructor]
49    protected GenerationalDistanceAnalyzer(bool deserializing) : base(deserializing) { }
[14044]50    protected GenerationalDistanceAnalyzer(GenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { }
[13672]51    public override IDeepCloneable Clone(Cloner cloner) {
52      return new GenerationalDistanceAnalyzer(this, cloner);
53    }
54
[13725]55    public GenerationalDistanceAnalyzer() {
[14044]56      Parameters.Add(new FixedValueParameter<DoubleValue>("Dampening", "", new DoubleValue(1)));
[14097]57      Parameters.Add(new ResultParameter<DoubleValue>("Generational Distance", "The genrational distance between the current front and the optimal front"));
58      GenerationalDistanceResultParameter.DefaultValue = new DoubleValue(double.NaN);
59
[13725]60    }
61
[14044]62    public override IOperation Apply() {
63      var qualities = QualitiesParameter.ActualValue;
[16171]64      var optimalfront = TestFunctionParameter.ActualValue.OptimalParetoFront(qualities[0].Length);
[14044]65      if (optimalfront == null) return base.Apply();
[16171]66      GenerationalDistanceResultParameter.ActualValue.Value = GenerationalDistanceCalculator.CalculateGenerationalDistance(qualities, optimalfront, Dampening);
[14044]67      return base.Apply();
[13672]68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.