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/SubScopesCreator.cs

    r4722 r5177  
    5858    }
    5959
    60     public override IOperation Apply() {
     60    public override IOperation Apply(IExecutionContext context) {
    6161      int n = NumberOfSubScopesParameter.ActualValue.Value;
    6262      for (int i = 0; i < n; i++)
    6363        CurrentScope.SubScopes.Add(new Scope(i.ToString()));
    64       return base.Apply();
     64      return base.Apply(context);
    6565    }
    6666  }
Note: See TracChangeset for help on using the changeset viewer.