Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR1.cs @ 17225

Last change on this file since 17225 was 17225, checked in by mkommend, 5 years ago

#2521: Integrated changes of #2943 into problem refactoring branch.

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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
21using System;
22using System.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Encodings.RealVectorEncoding;
26using HeuristicLab.Optimization;
27using HEAL.Attic;
28
29namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
30  [Item("IHR1", "Testfunction as defined as IHR1 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")]
31  [StorableType("16DF9415-9D12-4FB9-A985-7EEAE05A24CA")]
32  public class IHR1 : IHR {
33    protected override IList<double[]> GetOptimalParetoFront(int objectives) {
34      List<double[]> res = new List<double[]>();
35      for (int i = 0; i <= 500; i++) {
36        RealVector r = new RealVector(objectives);
37        r[0] = 1 / 500.0 * i;
38        res.Add(this.Evaluate(r, objectives));
39      }
40      return res;
41    }
42
43    protected override double GetBestKnownHypervolume(int objectives) {
44      return HypervolumeCalculator.CalculateHypervolume(GetOptimalParetoFront(objectives), GetReferencePoint(objectives), GetMaximization(objectives));
45    }
46
47    [StorableConstructor]
48    protected IHR1(StorableConstructorFlag _) : base(_) { }
49    protected IHR1(IHR1 original, Cloner cloner) : base(original, cloner) { }
50    public IHR1() : base() {
51    }
52
53    public override IDeepCloneable Clone(Cloner cloner) {
54      return new IHR1(this, cloner);
55    }
56
57    protected override double F1(RealVector y) {
58      return Math.Abs(y[0]);
59    }
60
61    protected override double F2(RealVector y) {
62      var g = G(y);
63      return g * HF(1 - Math.Sqrt(H(y[0], y) / g), y);
64    }
65
66    protected override double G(RealVector y) {
67      double sum = 0.0;
68      for (int i = 1; i < y.Length; i++) {
69        sum += HG(y[i]);
70      }
71      return 1 + 9 * sum / (y.Length - 1);
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.