Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/14/21 09:37:29 (3 years ago)
Author:
gkronber
Message:

#3135 added a new analyzer which allows to configure the solution result name, and renamed and marked the existing SolutionRSquaredAnalyzer as obsolete.

File:
1 edited

Legend:

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

    r17958 r18053  
    9090        changed = true;
    9191      }
    92       if (!Operators.OfType<SymbolicRegressionSolutionsAnalyzer>().Any()) {
    93         Operators.Add(new SymbolicRegressionSolutionsAnalyzer());
     92      if (!Operators.OfType<SolutionQualityAnalyzer>().Any()) {
     93        Operators.Add(new SolutionQualityAnalyzer());
    9494        changed = true;
    9595      }
     
    119119      Operators.Add(new SymbolicRegressionSingleObjectiveTrainingParetoBestSolutionAnalyzer());
    120120      Operators.Add(new SymbolicRegressionSingleObjectiveValidationParetoBestSolutionAnalyzer());
    121       Operators.Add(new SymbolicRegressionSolutionsAnalyzer());
     121      Operators.Add(new SolutionQualityAnalyzer());
    122122      Operators.Add(new SymbolicExpressionTreePhenotypicSimilarityCalculator());
    123123      Operators.Add(new ShapeConstraintsAnalyzer());
Note: See TracChangeset for help on using the changeset viewer.