Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Testfunctions/IHR/IHR3.cs @ 13936

Last change on this file since 13936 was 13936, checked in by bwerth, 8 years ago

#1087 added more functions (IHR1-4, IHR6, CIGTAB, ELLI)

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.MultiObjectiveTestFunctions {
29  [Item("IHR3", "Testfunction as defined as IHR3 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")]
30  [StorableClass]
31  public class IHR3 : IHR {
32
33    public override IEnumerable<double[]> OptimalParetoFront(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
39        res.Add(this.Evaluate(r, objectives));
40      }
41
42
43      return res;
44    }
45    public override double BestKnownHypervolume(int objectives) {
46      return Hypervolume.Calculate(OptimalParetoFront(objectives), ReferencePoint(objectives), Maximization(objectives));
47    }
48
49    [StorableConstructor]
50    protected IHR3(bool deserializing) : base(deserializing) { }
51    protected IHR3(IHR3 original, Cloner cloner) : base(original, cloner) { }
52    public IHR3() : base() {
53    }
54
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new IHR3(this, cloner);
57    }
58
59    protected override double F1(RealVector y) {
60      return Math.Abs(y[0]);
61    }
62
63    protected override double F2(RealVector r, RealVector y) {
64      var g = G(y);
65      var d = H(y[0], y) / g;
66      return g * HF(1 - Math.Sqrt(d) - d * Math.Sin(10 * Math.PI * y[0]), y);
67    }
68
69    protected override double G(RealVector y) {
70      double sum = 0.0;
71      for (int i = 1; i < y.Length; i++) {
72        sum += HG(y[i]);
73      }
74      return 1 + 9 * sum / (y.Length - 1);
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.