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

    r4722 r5177  
    5555    /// </summary>
    5656    /// <returns>The next operation.</returns>
    57     public override IOperation Apply() {
    58       IScope scope = ExecutionContext.Scope;
     57    public override IOperation Apply(IExecutionContext context) {
     58      IScope scope = context.Scope;
    5959      List<IScope> emigrantsList = new List<IScope>();
    6060
     
    7272        scope.SubScopes[i].SubScopes.Add(emigrantsList[i]);
    7373
    74       return base.Apply();
     74      return base.Apply(context);
    7575    }
    7676  }
Note: See TracChangeset for help on using the changeset viewer.