Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/12 16:23:03 (12 years ago)
Author:
mkommend
Message:

#1722: Corrected naming of the SymbolicRegressionSolution created by a LinearRegression algorithm to "Linear Regression Solution".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/LinearRegression.cs

    r7259 r7588  
    112112      SymbolicRegressionSolution solution = new SymbolicRegressionSolution(new SymbolicRegressionModel(tree, new SymbolicDataAnalysisExpressionTreeInterpreter()), (IRegressionProblemData)problemData.Clone());
    113113      solution.Model.Name = "Linear Regression Model";
     114      solution.Name = "Linear Regression Solution";
    114115      return solution;
    115116    }
Note: See TracChangeset for help on using the changeset viewer.