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.Programmable/3.3/ProgrammableOperator.cs

    r5173 r5177  
    452452    #region HeuristicLab interfaces
    453453
    454     public override IOperation Apply() {
     454    public override IOperation Apply(IExecutionContext context) {
    455455      lock (syncRoot) {
    456456        if (executeMethod == null) {
     
    459459      }
    460460
    461       var parameters = new List<object>() { this, ExecutionContext };
     461      var parameters = new List<object>() { this, context };
    462462      parameters.AddRange(Parameters.Select(p => (object)p));
    463463      return (IOperation)executeMethod.Invoke(null, parameters.ToArray());
Note: See TracChangeset for help on using the changeset viewer.