[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
|
---|
| 21 |
|
---|
[14090] | 22 | using System;
|
---|
[13672] | 23 | using System.Collections.Generic;
|
---|
[14030] | 24 | using System.Linq;
|
---|
[13672] | 25 | using HeuristicLab.Common;
|
---|
[13725] | 26 | using HeuristicLab.Core;
|
---|
[13672] | 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Optimization;
|
---|
[13725] | 29 | using HeuristicLab.Parameters;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[13672] | 31 |
|
---|
[16310] | 32 | namespace HeuristicLab.Analysis {
|
---|
[13988] | 33 | [StorableClass]
|
---|
[14044] | 34 | [Item("HypervolumeAnalyzer", "Computes the enclosed Hypervolume between the current front and a given reference Point")]
|
---|
[16310] | 35 | public class HypervolumeAnalyzer : MultiObjectiveSuccessAnalyzer {
|
---|
| 36 | public override string ResultName => "Hypervolume";
|
---|
[14044] | 37 |
|
---|
[16310] | 38 | public ILookupParameter<DoubleArray> ReferencePointParameter => (ILookupParameter<DoubleArray>)Parameters["ReferencePoint"];
|
---|
[14092] | 39 |
|
---|
[16310] | 40 | public IResultParameter<DoubleValue> BestKnownHypervolumeResultParameter => (IResultParameter<DoubleValue>)Parameters["Best known hypervolume"];
|
---|
[14097] | 41 |
|
---|
[16310] | 42 | public IResultParameter<DoubleValue> HypervolumeDistanceResultParameter => (IResultParameter<DoubleValue>)Parameters["Absolute Distance to BestKnownHypervolume"];
|
---|
| 43 |
|
---|
| 44 |
|
---|
[13988] | 45 | [StorableConstructor]
|
---|
[16310] | 46 | protected HypervolumeAnalyzer(bool deserializing) : base(deserializing) {}
|
---|
[13672] | 47 |
|
---|
[16310] | 48 | protected HypervolumeAnalyzer(HypervolumeAnalyzer original, Cloner cloner) : base(original, cloner) {}
|
---|
| 49 |
|
---|
[14044] | 50 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 51 | return new HypervolumeAnalyzer(this, cloner);
|
---|
[13988] | 52 | }
|
---|
[13725] | 53 |
|
---|
[14092] | 54 | public HypervolumeAnalyzer() {
|
---|
| 55 | Parameters.Add(new LookupParameter<DoubleArray>("ReferencePoint", "The reference point for hypervolume calculation"));
|
---|
[16310] | 56 | Parameters.Add(new ResultParameter<DoubleValue>("Hypervolume", "The hypervolume of the current generation", "Results", new DoubleValue(double.NaN)));
|
---|
[14097] | 57 | Parameters.Add(new ResultParameter<DoubleValue>("Best known hypervolume", "The optimal hypervolume"));
|
---|
| 58 | Parameters.Add(new ResultParameter<DoubleValue>("Absolute Distance to BestKnownHypervolume", "The difference between the best known and the current hypervolume"));
|
---|
[16310] | 59 | BestKnownHypervolumeResultParameter.DefaultValue = new DoubleValue(double.NaN);
|
---|
| 60 | HypervolumeDistanceResultParameter.DefaultValue = new DoubleValue(double.NaN);
|
---|
[14092] | 61 | }
|
---|
[13725] | 62 |
|
---|
[14044] | 63 | public override IOperation Apply() {
|
---|
[16310] | 64 | var qualities = QualitiesParameter.ActualValue.Select(x => x.CloneAsArray()).ToArray();
|
---|
| 65 | var referencePoint = ReferencePointParameter.ActualValue.ToArray();
|
---|
[16171] | 66 | var best = BestKnownHypervolumeResultParameter.ActualValue.Value;
|
---|
[16310] | 67 | var maximization = MaximizationParameter.ActualValue.ToArray();
|
---|
[13672] | 68 |
|
---|
[16310] | 69 | var hv = HypervolumeCalculator.CalculateHypervolume(qualities, referencePoint, maximization);
|
---|
| 70 | if (hv > best || double.IsNaN(best)) best = hv;
|
---|
| 71 | ResultParameter.ActualValue.Value = hv;
|
---|
[14097] | 72 | BestKnownHypervolumeResultParameter.ActualValue.Value = best;
|
---|
| 73 | HypervolumeDistanceResultParameter.ActualValue.Value = best - hv;
|
---|
[13936] | 74 |
|
---|
[14044] | 75 | return base.Apply();
|
---|
[13672] | 76 | }
|
---|
[13988] | 77 | }
|
---|
[13672] | 78 | }
|
---|