#region License Information
/* HeuristicLab
* Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using HeuristicLab.Random;
namespace HeuristicLab.Problems.Instances.DataAnalysis {
public class NguyenFunctionTen : ArtificialRegressionDataDescriptor {
public override string Name { get { return "Nguyen F10 = 2sin(x)cos(y)"; } }
public override string Description {
get {
return "Paper: Semantically-based Crossover in Genetic Programming: Application to Real-valued Symbolic Regression" + Environment.NewLine
+ "Authors: Nguyen Quang Uy · Nguyen Xuan Hoai · Michael O’Neill · R.I. McKay · Edgar Galvan-Lopez" + Environment.NewLine
+ "Function: F10 = 2sin(x)cos(y)" + Environment.NewLine
+ "Fitcases: 20 random points in [0, 1]x[0, 1]" + Environment.NewLine
+ "Non-terminals: +, -, *, % (protected division), sin, cos, exp, ln(|x|) (protected log)" + Environment.NewLine
+ "Terminals: only variables (no random constants)";
}
}
protected override string TargetVariable { get { return "Z"; } }
protected override string[] VariableNames { get { return new string[] { "X", "Y", "Z" }; } }
protected override string[] AllowedInputVariables { get { return new string[] { "X", "Y" }; } }
protected override int TrainingPartitionStart { get { return 0; } }
protected override int TrainingPartitionEnd { get { return 20; } }
protected override int TestPartitionStart { get { return 20; } }
protected override int TestPartitionEnd { get { return 1020; } }
public int Seed { get; private set; }
public NguyenFunctionTen() : this((int)System.DateTime.Now.Ticks) { }
public NguyenFunctionTen(int seed) : base() {
Seed = seed;
}
protected override List> GenerateValues() {
List> data = new List>();
var rand = new MersenneTwister((uint)Seed);
data.Add(ValueGenerator.GenerateUniformDistributedValues(rand.Next(), 1020, 0, 1).ToList());
data.Add(ValueGenerator.GenerateUniformDistributedValues(rand.Next(), 1020, 0, 1).ToList());
double x, y;
List results = new List();
for (int i = 0; i < data[0].Count; i++) {
x = data[0][i];
y = data[1][i];
results.Add(2 * Math.Sin(x) * Math.Cos(y));
}
data.Add(results);
return data;
}
}
}