Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/11 11:22:28 (13 years ago)
Author:
mkommend
Message:

#1411: Reverted changesets regarding the number of evaluated nodes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveBoundedMeanSquaredErrorEvaluator.cs

    r5894 r5906  
    4949      double quality = Calculate(SymbolicDataAnalysisTreeInterpreterParameter.ActualValue, solution, EstimationLimitsParameter.ActualValue.Lower, EstimationLimitsParameter.ActualValue.Upper, ProblemDataParameter.ActualValue, rows);
    5050      QualityParameter.ActualValue = new DoubleValue(quality);
    51       AddEvaluatedNodes(solution.Length * rows.Count());
    5251      return base.Apply();
    5352    }
     
    9089      SymbolicDataAnalysisTreeInterpreterParameter.ExecutionContext = context;
    9190      EstimationLimitsParameter.ExecutionContext = context;
    92       EvaluatedNodesParameter.ExecutionContext = context;
    9391
    9492      double mse = Calculate(SymbolicDataAnalysisTreeInterpreterParameter.ActualValue, tree, EstimationLimitsParameter.ActualValue.Lower, EstimationLimitsParameter.ActualValue.Upper, problemData, rows);
    95       AddEvaluatedNodes(tree.Length * rows.Count());
    9693
    9794      SymbolicDataAnalysisTreeInterpreterParameter.ExecutionContext = null;
    9895      EstimationLimitsParameter.ExecutionContext = null;
    99       EvaluatedNodesParameter.ExecutionContext = null;
    10096
    10197      return mse;
Note: See TracChangeset for help on using the changeset viewer.