Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13644


Ignore:
Timestamp:
03/02/16 18:58:21 (8 years ago)
Author:
gkronber
Message:

#2526 fixed a typo in the name & description of a benchmark problem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/KotanchekFunction.cs

    r12292 r13644  
    2828  public class KotanchekFunction : ArtificialRegressionDataDescriptor {
    2929
    30     public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(-(X1 - 1))² / (1.2 + (X2 -2.5)²"; } }
     30    public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)"; } }
    3131    public override string Description {
    3232      get {
    3333        return "Paper: Order of Nonlinearity as a Complexity Measure for Models Generated by Symbolic Regression via Pareto Genetic Programming " + Environment.NewLine
    3434        + "Authors: Ekaterina J. Vladislavleva, Member, IEEE, Guido F. Smits, Member, IEEE, and Dick den Hertog" + Environment.NewLine
    35         + "Function: F1(X1, X2) = exp(-(X1 - 1))² / (1.2 + (X2 -2.5)²" + Environment.NewLine
     35        + "Function: F1(X1, X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)" + Environment.NewLine
    3636        + "Training Data: 100 points X1, X2 = Rand(0.3, 4)" + Environment.NewLine
    3737        + "Test Data: 45*45 points (X1, X2) = (-0.2:0.1:4.2)" + Environment.NewLine
Note: See TracChangeset for help on using the changeset viewer.