[13672] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) 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 |
|
---|
| 22 | using System.Linq;
|
---|
[13672] | 23 | using HeuristicLab.Common;
|
---|
[13725] | 24 | using HeuristicLab.Core;
|
---|
[13672] | 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Optimization;
|
---|
[13725] | 27 | using HeuristicLab.Parameters;
|
---|
[16565] | 28 | using HEAL.Attic;
|
---|
[13672] | 29 |
|
---|
[14111] | 30 | namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
|
---|
[16565] | 31 | [StorableType("EBC72F16-E329-4D18-800C-8642EFD0F05C")]
|
---|
[13725] | 32 | [Item("GenerationalDistanceAnalyzer", "The generational distance between the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")]
|
---|
| 33 | public class GenerationalDistanceAnalyzer : MOTFAnalyzer {
|
---|
[14044] | 34 |
|
---|
| 35 | private IFixedValueParameter<DoubleValue> DampeningParameter {
|
---|
| 36 | get { return (IFixedValueParameter<DoubleValue>)Parameters["Dampening"]; }
|
---|
| 37 | set { Parameters["Dampening"].ActualValue = value; }
|
---|
[13672] | 38 | }
|
---|
[14044] | 39 |
|
---|
| 40 | public double Dampening {
|
---|
| 41 | get { return DampeningParameter.Value.Value; }
|
---|
| 42 | set { DampeningParameter.Value.Value = value; }
|
---|
| 43 | }
|
---|
| 44 |
|
---|
[14097] | 45 | public IResultParameter<DoubleValue> GenerationalDistanceResultParameter {
|
---|
| 46 | get { return (IResultParameter<DoubleValue>)Parameters["Generational Distance"]; }
|
---|
| 47 | }
|
---|
| 48 |
|
---|
[13725] | 49 | [StorableConstructor]
|
---|
[16565] | 50 | protected GenerationalDistanceAnalyzer(StorableConstructorFlag _) : base(_) { }
|
---|
[14044] | 51 | protected GenerationalDistanceAnalyzer(GenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
[13672] | 52 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 53 | return new GenerationalDistanceAnalyzer(this, cloner);
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[13725] | 56 | public GenerationalDistanceAnalyzer() {
|
---|
[14044] | 57 | Parameters.Add(new FixedValueParameter<DoubleValue>("Dampening", "", new DoubleValue(1)));
|
---|
[14097] | 58 | Parameters.Add(new ResultParameter<DoubleValue>("Generational Distance", "The genrational distance between the current front and the optimal front"));
|
---|
| 59 | GenerationalDistanceResultParameter.DefaultValue = new DoubleValue(double.NaN);
|
---|
| 60 |
|
---|
[13725] | 61 | }
|
---|
| 62 |
|
---|
[14044] | 63 | public override IOperation Apply() {
|
---|
| 64 | var qualities = QualitiesParameter.ActualValue;
|
---|
[13672] | 65 | int objectives = qualities[0].Length;
|
---|
[14044] | 66 |
|
---|
[13725] | 67 | var optimalfront = TestFunctionParameter.ActualValue.OptimalParetoFront(objectives);
|
---|
[14044] | 68 | if (optimalfront == null) return base.Apply();
|
---|
| 69 |
|
---|
[14085] | 70 | var distance = GenerationalDistance.Calculate(qualities.Select(x => x.CloneAsArray()), optimalfront, Dampening);
|
---|
[14097] | 71 | GenerationalDistanceResultParameter.ActualValue.Value = distance;
|
---|
[14044] | 72 |
|
---|
| 73 | return base.Apply();
|
---|
[13672] | 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|