Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/11 13:52:29 (14 years ago)
Author:
gkronber
Message:

#1418 Fixed a problem with scaling of regression and classification solutions (moved scale method out of solution into the model because of leaky abstraction).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveValidationBestSolutionAnalyzer.cs

    r5809 r5818  
    6868    protected override ISymbolicRegressionSolution CreateSolution(ISymbolicExpressionTree bestTree, double bestQuality) {
    6969      var model = new SymbolicRegressionModel(bestTree, SymbolicDataAnalysisTreeInterpreterParameter.ActualValue, EstimationLimitsParameter.ActualValue.Lower, EstimationLimitsParameter.ActualValue.Upper);
    70       var solution = new SymbolicRegressionSolution(model, ProblemDataParameter.ActualValue);
    7170      if (ApplyLinearScaling.Value)
    72         solution.ScaleModel();
    73       return solution;
     71        SymbolicRegressionModel.Scale(model, ProblemDataParameter.ActualValue);
     72      return new SymbolicRegressionSolution(model, ProblemDataParameter.ActualValue);
    7473    }
    7574  }
Note: See TracChangeset for help on using the changeset viewer.