Changeset 8224 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionFive.cs
- Timestamp:
- 07/05/12 09:44:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Nguyen/NguyenFunctionFive.cs
r7849 r8224 27 27 public class NguyenFunctionFive : ArtificialRegressionDataDescriptor { 28 28 29 public override string Name { get { return "Nguyen F5 = sin(x ^2)cos(x) - 1"; } }29 public override string Name { get { return "Nguyen F5 = sin(x²)cos(x) - 1"; } } 30 30 public override string Description { 31 31 get { 32 32 return "Paper: Semantically-based Crossover in Genetic Programming: Application to Real-valued Symbolic Regression" + Environment.NewLine 33 33 + "Authors: Nguyen Quang Uy · Nguyen Xuan Hoai · Michael O’Neill · R.I. McKay · Edgar Galvan-Lopez" + Environment.NewLine 34 + "Function: F5 = sin(x ^2)cos(x) - 1" + Environment.NewLine35 + "Fitcases: 20 random points ⊆[-1, 1]" + Environment.NewLine36 + "Non-terminals: +, -, *, /, sin, cos, exp, log (protected version)" + Environment.NewLine37 + "Terminals: X, 1 for single variable problems, and X, Y for bivariable problems";34 + "Function: F5 = sin(x²)cos(x) - 1" + Environment.NewLine 35 + "Fitcases: 20 random points in [-1, 1]" + Environment.NewLine 36 + "Non-terminals: +, -, *, % (protected division), sin, cos, exp, ln(|x|) (protected log)" + Environment.NewLine 37 + "Terminals: only variables (no random constants)"; 38 38 } 39 39 }
Note: See TracChangeset
for help on using the changeset viewer.