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.Selection/3.3/Reducer.cs

    r4722 r5177  
    5252    }
    5353
    54     public sealed override IOperation Apply() {
     54    public sealed override IOperation Apply(IExecutionContext context) {
    5555      List<IScope> scopes = new List<IScope>(CurrentScope.SubScopes);
    5656      List<IScope> reduced = Reduce(scopes);
     
    5959      CurrentScope.SubScopes.AddRange(reduced);
    6060
    61       return base.Apply();
     61      return base.Apply(context);
    6262    }
    6363
Note: See TracChangeset for help on using the changeset viewer.