Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/HypervolumeIndicator.cs @ 14577

Last change on this file since 14577 was 14577, checked in by bwerth, 7 years ago

#2592 made MOCMAES compatible with MultiObjectiveBasicProblem instead of MultiObjectiveTestfunction, fixed Bug in CrowdingIndicator

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22
23using System;
24using System.Collections.Generic;
25using System.Linq;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Encodings.RealVectorEncoding;
29using HeuristicLab.Optimization;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.Problems.TestFunctions.MultiObjective;
32namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy {
33  [Item("HypervolumeIndicator", "Selection of Offspring based on contributing Hypervolume")]
34  [StorableClass]
35  internal class HypervolumeIndicator : Item, IIndicator {
36
37    public int LeastContributer<TR>(IEnumerable<TR> front, Func<TR, double[]> extractor, MultiObjectiveBasicProblem<RealVectorEncoding> problem) {
38      var frontArr = front.Select(extractor.Invoke).ToList();
39      if (frontArr.Count <= 1) return 0;
40      var p = problem as MultiObjectiveTestFunctionProblem;
41      var refPoint = BuildReference(p != null ? frontArr.Concat(new[] { p.TestFunction.ReferencePoint(p.Objectives) }) : frontArr, problem.Maximization);
42      var hv = Hypervolume.Calculate(frontArr, refPoint, problem.Maximization);
43      var contributions = Enumerable.Range(0, frontArr.Count).Select(i => Contribution(frontArr, i, problem.Maximization, refPoint, hv));
44      return contributions.ArgMin();
45    }
46
47    private static double Contribution(IList<double[]> front, int idx, bool[] maximization, double[] refPoint, double hv) {
48      var point = front[idx];
49      front.RemoveAt(idx);
50      var contribution = hv - Hypervolume.Calculate(front, refPoint, maximization);
51      front.Insert(idx, point);
52      return contribution;
53    }
54    private static double[] BuildReference(IEnumerable<double[]> front, IReadOnlyList<bool> maximization) {
55      var refPoint = new double[maximization.Count];
56      foreach (var point in front)
57        for (var i = 0; i < maximization.Count; i++)
58          refPoint[i] = maximization[i] ? Math.Min(refPoint[i], point[i]) : Math.Max(refPoint[i], point[i]);
59      return refPoint;
60    }
61
62    [StorableConstructor]
63    protected HypervolumeIndicator(bool deserializing) : base(deserializing) { }
64    protected HypervolumeIndicator(HypervolumeIndicator original, Cloner cloner) : base(original, cloner) { }
65    public override IDeepCloneable Clone(Cloner cloner) { return new HypervolumeIndicator(this, cloner); }
66    public HypervolumeIndicator() { }
67  }
68}
Note: See TracBrowser for help on using the repository browser.