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/3.3/Symbolic/VariableFrequencyAnalyser.cs

    r4945 r5177  
    7474    }
    7575
    76     public override IOperation Apply() {
     76    public override IOperation Apply(IExecutionContext context) {
    7777      var inputVariables = DataAnalysisProblemData.InputVariables.CheckedItems.Select(x => x.Value.Value);
    7878      if (VariableFrequencies == null) {
     
    8686        VariableFrequencies[lastRowIndex, columnIndex] = pair.Value;
    8787      }
    88       return base.Apply();
     88      return base.Apply(context);
    8989    }
    9090
Note: See TracChangeset for help on using the changeset viewer.