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.Operators/3.3/Placeholder.cs

    r4722 r5177  
    5050    }
    5151
    52     public override IOperation Apply() {
    53       OperationCollection next = new OperationCollection(base.Apply());
     52    public override IOperation Apply(IExecutionContext context) {
     53      OperationCollection next = new OperationCollection(base.Apply(context));
    5454      IOperator op = OperatorParameter.ActualValue;
    5555      if (op != null)
    56         next.Insert(0, ExecutionContext.CreateOperation(op));
     56        next.Insert(0, context.CreateOperation(op));
    5757      return next;
    5858    }
Note: See TracChangeset for help on using the changeset viewer.