- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Operators/3.3/SubScopesCreator.cs
r4722 r5177 58 58 } 59 59 60 public override IOperation Apply( ) {60 public override IOperation Apply(IExecutionContext context) { 61 61 int n = NumberOfSubScopesParameter.ActualValue.Value; 62 62 for (int i = 0; i < n; i++) 63 63 CurrentScope.SubScopes.Add(new Scope(i.ToString())); 64 return base.Apply( );64 return base.Apply(context); 65 65 } 66 66 }
Note: See TracChangeset
for help on using the changeset viewer.