- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Operators/3.3/SubScopesMixer.cs
r4722 r5177 77 77 /// <param name="scope">The scope whose sub scopes should be mixed.</param> 78 78 /// <returns><c>null</c>.</returns> 79 public override IOperation Apply( ) {79 public override IOperation Apply(IExecutionContext context) { 80 80 int partitions = Partitions.Value; 81 IScope scope = ExecutionContext.Scope;81 IScope scope = context.Scope; 82 82 int count = scope.SubScopes.Count; 83 83 if ((count % partitions) != 0) … … 96 96 scope.SubScopes.AddRange(reorderedSubScopes); 97 97 98 return base.Apply( );98 return base.Apply(context); 99 99 } 100 100 }
Note: See TracChangeset
for help on using the changeset viewer.