Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Testfunctions/ZDT4.cs @ 13451

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

#1087 extensive testing; fixed minor bugs

File size: 2.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Common;
7using HeuristicLab.Core;
8using HeuristicLab.Data;
9using HeuristicLab.Encodings.RealVectorEncoding;
10using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
11using HeuristicLab.Problems.MultiObjectiveTestFunction;
12
13namespace HeuristicLab.Problems.TestFunctions {
14  [Item("ZDT4", "//http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")]
15  [StorableClass]
16  public class ZDT4 : MultiObjectiveTestFunction {
17
18    public override DoubleMatrix Bounds {
19      get {
20        return new DoubleMatrix(new double[,] { { 0, 1 } });   //definition in the source is contradicting itself the known paretofront is for [0,1]
21      }
22    }
23
24    public override bool[] Maximization {
25      get {
26        return new bool[] { false, false };
27      }
28    }
29
30    public override int MaximumProblemSize {
31      get {
32        return int.MaxValue;
33      }
34    }
35
36    public override int MaximumSolutionSize {
37      get {
38        return 2;
39      }
40    }
41
42    public override int MinimumProblemSize {
43      get {
44        return 1;
45      }
46    }
47
48    public override int MinimumSolutionSize {
49      get {
50        return 2;
51      }
52    }
53
54    public override int ActualSolutionSize {
55      get {
56        return 2;
57      }
58
59      set {
60      }
61    }
62
63    [StorableConstructor]
64    protected ZDT4(bool deserializing) : base(deserializing) { }
65    protected ZDT4(ZDT4 original, Cloner cloner) : base(original, cloner) { }
66    public ZDT4() : base() { }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new ZDT4(this, cloner);
70    }
71
72
73
74    public override double[] Evaluate(RealVector r) {
75      double g = 0;
76      for (int i = 1; i < r.Length; i++) {
77        double v = r[i];
78        g += v * v - 10 * Math.Cos(4 * Math.PI * v);
79      }
80      g = 1.0 + 10.0 * (r.Length - 1) + g;
81      double d = r[0] / g;
82      return new double[] { r[0], g * (1.0 - d * d) };
83    }
84  }
85}
Note: See TracBrowser for help on using the repository browser.