Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/14/15 14:32:43 (9 years ago)
Author:
ehopf
Message:

#2361: Removed a unnecessary method call.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SensitivityEvaluator/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveWeightedPerformanceMeasuresEvaluator.cs

    r12302 r12311  
    102102                IEnumerable<int> rows, bool applyLinearScaling, ISymbolicClassificationModelCreator modelCreator, double normalizedMeanSquaredErrorWeightingFactor, double falseNegativeRateWeightingFactor, double falsePositiveRateWeightingFactor) {
    103103      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
    104       var targetClassValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows).ToArray();
     104      var targetClassValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
    105105      var boundedEstimatedValues = estimatedValues.LimitToRange(lowerEstimationLimit, upperEstimationLimit).ToArray();
    106106      OnlineCalculatorError errorState;
Note: See TracChangeset for help on using the changeset viewer.