Changeset 5716 for branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression
- Timestamp:
- 03/16/11 16:22:24 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectiveProblem.cs
r5685 r5716 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using HeuristicLab.Parameters; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Parameters;28 28 29 29 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { … … 71 71 72 72 InitializeOperators(); 73 UpdateEstimationLimits(); 73 74 } 74 75 -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveProblem.cs
r5685 r5716 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Data; 26 using HeuristicLab.Parameters; 25 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HeuristicLab.Parameters;27 using HeuristicLab.Data;28 28 29 29 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression { … … 39 39 private const string LowerEstimationLimitParameterDescription = "The lower limit for the estimated value that can be returned by the symbolic regression model."; 40 40 private const string UpperEstimationLimitParameterDescription = "The upper limit for the estimated value that can be returned by the symbolic regression model."; 41 41 42 42 #region parameter properties 43 43 public IFixedValueParameter<DoubleValue> LowerEstimationLimitParameter { … … 71 71 72 72 InitializeOperators(); 73 UpdateEstimationLimits(); 73 74 } 74 75 … … 78 79 ParameterizeOperators(); 79 80 } 80 81 81 82 private void UpdateEstimationLimits() { 82 83 if (ProblemData.TrainingPartitionStart.Value < ProblemData.TrainingPartitionEnd.Value) {
Note: See TracChangeset
for help on using the changeset viewer.