- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs
r5080 r5177 66 66 } 67 67 68 public override IOperation Apply( ) {68 public override IOperation Apply(IExecutionContext context) { 69 69 IntValue interval = UpdateIntervalParameter.ActualValue; 70 70 if (interval == null) interval = new IntValue(1); … … 80 80 OperationCollection next = new OperationCollection(); 81 81 foreach (IndexedItem<IAnalyzer> item in Operators.CheckedItems) 82 next.Add( ExecutionContext.CreateOperation(item.Value));83 next.Add(base.Apply( ));82 next.Add(context.CreateOperation(item.Value)); 83 next.Add(base.Apply(context)); 84 84 return next; 85 85 } else { 86 return base.Apply( );86 return base.Apply(context); 87 87 } 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.