Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/11 16:22:24 (13 years ago)
Author:
mkommend
Message:

#1418: Updated estimation limits on symbolic data analysis problem creation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveProblem.cs

    r5685 r5716  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
     25using HeuristicLab.Data;
     26using HeuristicLab.Parameters;
    2527using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    26 using HeuristicLab.Parameters;
    27 using HeuristicLab.Data;
    2828
    2929namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
     
    3939    private const string LowerEstimationLimitParameterDescription = "The lower limit for the estimated value that can be returned by the symbolic regression model.";
    4040    private const string UpperEstimationLimitParameterDescription = "The upper limit for the estimated value that can be returned by the symbolic regression model.";
    41    
     41
    4242    #region parameter properties
    4343    public IFixedValueParameter<DoubleValue> LowerEstimationLimitParameter {
     
    7171
    7272      InitializeOperators();
     73      UpdateEstimationLimits();
    7374    }
    7475
     
    7879      ParameterizeOperators();
    7980    }
    80    
     81
    8182    private void UpdateEstimationLimits() {
    8283      if (ProblemData.TrainingPartitionStart.Value < ProblemData.TrainingPartitionEnd.Value) {
Note: See TracChangeset for help on using the changeset viewer.