Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Regression/3.4/Various/SpatialCoevolution.cs @ 7666

Last change on this file since 7666 was 7666, checked in by sforsten, 12 years ago

#1784:

  • deleted obsolete project Problems.Instances.Regression.Views
  • added TrentMcConaghy and Various problem instances (zip file from TrentMcConaghy is rather big)
File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25
26namespace HeuristicLab.Problems.Instances.Regression {
27  public class SpatialCoevolution : ArtificialRegressionDataDescriptor {
28
29    public override string Name { get { return "Spatial co-evolution F(x,y) = 1/(1+power(x,-4)) + 1/(1+pow(y,-4))"; } }
30    public override string Description {
31      get {
32        return "Paper: Evolutionary consequences of coevolving targets" + Environment.NewLine
33        + "Authors: Ludo Pagie and Paulien Hogeweg" + Environment.NewLine
34        + "Function: F(x,y) = 1/(1+power(x,-4)) + 1/(1+pow(y,-4))" + Environment.NewLine
35        + "Terminal set: x, y" + Environment.NewLine
36        + "The fitness of a solution is defined as the mean of the absolute differences between "
37        + "the target function and the solution over all problems on the basis of which it is evaluated. "
38        + "A solution is considered completely ’correct’ if, for all 676 problems in the ’complete’ "
39        + "problem set used in the static evaluation scheme, the absolute difference between "
40        + "solution and target function is less than 0:01 (this is a so-called hit).";
41      }
42    }
43    protected override string TargetVariable { get { return "F"; } }
44    protected override IEnumerable<string> InputVariables { get { return new List<string>() { "X", "Y", "F" }; } }
45    protected override IEnumerable<string> AllowedInputVariables { get { return new List<string>() { "X", "Y" }; } }
46    protected override int TrainingPartitionStart { get { return 0; } }
47    protected override int TrainingPartitionEnd { get { return 250; } }
48    protected override int TestPartitionStart { get { return 250; } }
49    protected override int TestPartitionEnd { get { return 500; } }
50
51    protected override double[,] GenerateValues() {
52      List<List<double>> data = new List<List<double>>();
53
54      List<double> oneVariableTestData = ValueGenerator.GenerateSteps(-5, 5, 0.4);
55      List<List<double>> testData = new List<List<double>>() { oneVariableTestData, oneVariableTestData };
56      testData = ValueGenerator.GenerateAllCombinationsOfValuesInLists(testData);
57
58      for (int i = 0; i < AllowedInputVariables.Count(); i++) {
59        data.Add(ValueGenerator.GenerateUniformDistributedValues(1000, -5, 5));
60        data[i].AddRange(testData[i]);
61      }
62
63      double x, y;
64      List<double> results = new List<double>();
65      for (int i = 0; i < data[0].Count; i++) {
66        x = data[0][i];
67        y = data[1][i];
68        results.Add(1 / (1 + Math.Pow(x, -4)) + 1 / (1 + Math.Pow(y, -4)));
69      }
70      data.Add(results);
71
72      return ValueGenerator.Transformation(data);
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.