[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 |
|
---|
[16310] | 22 | using System.Collections.Generic;
|
---|
[14044] | 23 | using System.Linq;
|
---|
[13672] | 24 | using HeuristicLab.Common;
|
---|
[13725] | 25 | using HeuristicLab.Core;
|
---|
[13672] | 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
[13725] | 28 | using HeuristicLab.Parameters;
|
---|
| 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[13672] | 30 |
|
---|
[16310] | 31 | namespace HeuristicLab.Analysis {
|
---|
[13725] | 32 | [StorableClass]
|
---|
[16310] | 33 | [Item("GenerationalDistanceAnalyzer", "The generational distance between the current and the optimal front (if known)(see Multi-Objective Performance Metrics - Shodhganga for more information). The calculation of generational distance requires a known optimal pareto front")]
|
---|
| 34 | public class GenerationalDistanceAnalyzer : MultiObjectiveSuccessAnalyzer {
|
---|
| 35 | public override string ResultName => "Generational Distance";
|
---|
[14044] | 36 |
|
---|
[16310] | 37 | public IFixedValueParameter<DoubleValue> DampeningParameter => (IFixedValueParameter<DoubleValue>)Parameters["Dampening"];
|
---|
[14044] | 38 |
|
---|
| 39 | public double Dampening {
|
---|
[16310] | 40 | get => DampeningParameter.Value.Value;
|
---|
| 41 | set => DampeningParameter.Value.Value = value;
|
---|
[14044] | 42 | }
|
---|
| 43 |
|
---|
[16310] | 44 | public ILookupParameter<DoubleMatrix> OptimalParetoFrontParameter => (ILookupParameter<DoubleMatrix>)Parameters["BestKnownFront"];
|
---|
[14097] | 45 |
|
---|
[16310] | 46 |
|
---|
[13725] | 47 | [StorableConstructor]
|
---|
| 48 | protected GenerationalDistanceAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
[14044] | 49 | protected GenerationalDistanceAnalyzer(GenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
[13672] | 50 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 51 | return new GenerationalDistanceAnalyzer(this, cloner);
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[13725] | 54 | public GenerationalDistanceAnalyzer() {
|
---|
[14044] | 55 | Parameters.Add(new FixedValueParameter<DoubleValue>("Dampening", "", new DoubleValue(1)));
|
---|
[16310] | 56 | Parameters.Add(new LookupParameter<ItemArray<DoubleArray>>("OptimalParetoFront", "The analytically best known Pareto front"));
|
---|
| 57 | Parameters.Add(new ResultParameter<DoubleValue>(ResultName, "The generational distance between the current front and the optimal front", "Results", new DoubleValue(double.NaN)));
|
---|
[13725] | 58 | }
|
---|
| 59 |
|
---|
[14044] | 60 | public override IOperation Apply() {
|
---|
| 61 | var qualities = QualitiesParameter.ActualValue;
|
---|
[16310] | 62 | var optimalFront = OptimalParetoFrontParameter.ActualValue;
|
---|
| 63 | if (optimalFront == null) return base.Apply();
|
---|
| 64 | var front = Enumerable.Range(0, optimalFront.Rows).Select(r => Enumerable.Range(0, optimalFront.Columns).Select(c => optimalFront[r, c]).ToList()).ToList();
|
---|
| 65 | ResultParameter.ActualValue.Value = CalculateDistance(qualities,front);
|
---|
[14044] | 66 | return base.Apply();
|
---|
[13672] | 67 | }
|
---|
[16310] | 68 |
|
---|
| 69 | protected virtual double CalculateDistance(ItemArray<DoubleArray> qualities, IList<List<double>> optimalFront) {
|
---|
| 70 | return GenerationalDistanceCalculator.CalculateGenerationalDistance(qualities, optimalFront, Dampening);
|
---|
| 71 | }
|
---|
[13672] | 72 | }
|
---|
| 73 | }
|
---|