Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR6.cs @ 17709

Last change on this file since 17709 was 16171, checked in by bwerth, 6 years ago

#2943 worked on MOBasicProblem - added Interfaces;reworked MOCalculators; several minor changes

File size: 2.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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 System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Encodings.RealVectorEncoding;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
30  [Item("IHR6", "Testfunction as defined as IHR6 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  [StorableClass]
32  public class IHR6 : IHR {
33    protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) {
34      var res = new List<double[]>();
35      for (var i = 0; i <= 500; i++) {
36        var 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    [StorableConstructor]
44    protected IHR6(bool deserializing) : base(deserializing) { }
45    protected IHR6(IHR6 original, Cloner cloner) : base(original, cloner) { }
46    public IHR6() : base() {
47    }
48
49    public override IDeepCloneable Clone(Cloner cloner) {
50      return new IHR6(this, cloner);
51    }
52
53    protected override double F1(RealVector y) {
54      return 1 - Math.Exp(-4 * Math.Abs(y[0])) * Math.Pow(Math.Sin(6 * Math.PI * y[0]), 6);
55    }
56
57    protected override double F2(RealVector y) {
58      var g = G(y);
59      var d = H(y[0], y) / g;
60      return g * HF(1 - d * d, y);
61    }
62
63    protected override double G(RealVector y) {
64      var sum = 0.0;
65      for (var i = 1; i < y.Length; i++) {
66        sum += HG(y[i]);
67      }
68      return 1 + 9 * Math.Pow(sum / (y.Length - 1), 0.25);
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.