Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/26/10 03:51:30 (14 years ago)
Author:
swagner
Message:

Removed property ExecutionContext in Operator (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/SimpleSymbolicRegressionEvaluator.cs

    r4722 r5177  
    120120    }
    121121
    122     public override IOperation Apply() {
     122    public override IOperation Apply(IExecutionContext context) {
    123123      Dataset dataset = RegressionProblemData.Dataset;
    124124      string targetVariable = RegressionProblemData.TargetVariable.Value;
     
    136136      // NB: indexes must match SimpleEvaluator.ORIGINAL_INDEX and SimpleEvaluator.ESTIMATED_INDEX
    137137      ValuesParameter.ActualValue = new DoubleMatrix(MatrixExtensions<double>.Create(originalValues.ToArray(), estimatedValues.ToArray()));
    138       return base.Apply();
     138      return base.Apply(context);
    139139    }
    140140  }
Note: See TracChangeset for help on using the changeset viewer.