Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Testfunctions/Kursawe.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("Kursawe", "from // http://darwin.di.uminho.pt/jecoli/index.php/Multiobjective_example [30.11.2015]")]
15  [StorableClass]
16  public class Kursawe : MultiObjectiveTestFunction {
17
18    public override DoubleMatrix Bounds {
19      get {
20        return new DoubleMatrix(new double[,] { { -5, 5 } });
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 3;
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 Kursawe(bool deserializing) : base(deserializing) { }
65    protected Kursawe(Kursawe original, Cloner cloner) : base(original, cloner) { }
66    public Kursawe() : base() { }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new Kursawe(this, cloner);
70    }
71
72
73
74    public override double[] Evaluate(RealVector r) {
75      //objective 1
76      double f0 = 0.0;
77      for (int i = 0; i < 2; i++) {
78        f0 += -10 * Math.Exp(-0.2 * Math.Sqrt(r[i] * r[i] + r[i + 1] * r[i + 1]));
79      }
80      //objective2
81      double f1 = 0.0;
82      for (int i = 0; i < 3; i++) {
83        f1 += Math.Pow(Math.Abs(r[i]), 0.8) + 5 * Math.Sin(Math.Pow(r[i], 3));
84      }
85
86      return new double[] { f0, f1 };
87    }
88  }
89}
Note: See TracBrowser for help on using the repository browser.