Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/10 01:44:33 (14 years ago)
Author:
swagner
Message:

Revoked changes of r5177 (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/Analyzer/ValidationBestSymbolicClassificationSolutionAnalyzer.cs

    r5177 r5178  
    214214    }
    215215
    216     public override IOperation Apply(IExecutionContext context) {
     216    public override IOperation Apply() {
    217217      var trees = SymbolicExpressionTree;
    218218      string targetVariable = ClassificationProblemData.TargetVariable.Value;
     
    234234
    235235      foreach (var tree in trees) {
    236         double quality = Evaluator.Evaluate(context, SymbolicExpressionTreeInterpreter, tree,
     236        double quality = Evaluator.Evaluate(SymbolicExpressionTreeInterpreter, tree,
    237237          lowerEstimationLimit, upperEstimationLimit, ClassificationProblemData.Dataset,
    238238          targetVariable, rows);
     
    274274        UpdateBestSolutionResults();
    275275      }
    276       return base.Apply(context);
     276      return base.Apply();
    277277    }
    278278
Note: See TracChangeset for help on using the changeset viewer.