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.Analysis/3.3/MultiAnalyzer.cs

    r5080 r5177  
    6666    }
    6767
    68     public override IOperation Apply() {
     68    public override IOperation Apply(IExecutionContext context) {
    6969      IntValue interval = UpdateIntervalParameter.ActualValue;
    7070      if (interval == null) interval = new IntValue(1);
     
    8080        OperationCollection next = new OperationCollection();
    8181        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));
    8484        return next;
    8585      } else {
    86         return base.Apply();
     86        return base.Apply(context);
    8787      }
    8888    }
Note: See TracChangeset for help on using the changeset viewer.