Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/VariableFrequencyAnalyser.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/VariableFrequencyAnalyser.cs
r4945 r5177 74 74 } 75 75 76 public override IOperation Apply( ) {76 public override IOperation Apply(IExecutionContext context) { 77 77 var inputVariables = DataAnalysisProblemData.InputVariables.CheckedItems.Select(x => x.Value.Value); 78 78 if (VariableFrequencies == null) { … … 86 86 VariableFrequencies[lastRowIndex, columnIndex] = pair.Value; 87 87 } 88 return base.Apply( );88 return base.Apply(context); 89 89 } 90 90
Note: See TracChangeset
for help on using the changeset viewer.