Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/14 12:23:59 (10 years ago)
Author:
sawinkle
Message:

#2109:
Refactoring:

  • Removed recursive version of mapping in /Mappers/DepthFirstMapper.cs, because only the iterative one is used.
  • Removed unused using statements and unused commented code.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/Symbolic/GESymbolicRegressionSingleObjectiveProblem.cs

    r10268 r10276  
    3131
    3232namespace HeuristicLab.Problems.GrammaticalEvolution {
    33   [Item("Grammatical Evolution Symbolic Regression Problem (single objective)", "Represents a single objective symbolic regression problem, implemented in Grammatical Evolution.")]
     33  [Item("Grammatical Evolution Symbolic Regression Problem (single objective)",
     34        "Represents a single objective symbolic regression problem, implemented in Grammatical Evolution.")]
    3435  [StorableClass]
    3536  [Creatable("Problems")]
     
    3738                                                            IRegressionProblem {
    3839    private const double PunishmentFactor = 10;
    39     //private const int InitialMaximumTreeDepth = 8;
    4040    private const int InitialMaximumTreeLength = 25;
    4141    private const string EstimationLimitsParameterName = "EstimationLimits";
    42     private const string EstimationLimitsParameterDescription = "The limits for the estimated value that can be returned by the symbolic regression model.";
     42    private const string EstimationLimitsParameterDescription
     43      = "The limits for the estimated value that can be returned by the symbolic regression model.";
    4344
    4445    #region parameter properties
     
    6970      ApplyLinearScalingParameter.Value.Value = true;
    7071      Maximization.Value = true;
    71       //MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
    7272      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
    7373
Note: See TracChangeset for help on using the changeset viewer.