Changeset 5177 for branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/UnidirectionalRingMigrator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/UnidirectionalRingMigrator.cs
r4722 r5177 55 55 /// </summary> 56 56 /// <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; 59 59 List<IScope> emigrantsList = new List<IScope>(); 60 60 … … 72 72 scope.SubScopes[i].SubScopes.Add(emigrantsList[i]); 73 73 74 return base.Apply( );74 return base.Apply(context); 75 75 } 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.