Changeset 5177 for branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/ChildrenCreator.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/ChildrenCreator.cs
r4722 r5177 67 67 } 68 68 69 public override IOperation Apply( ) {69 public override IOperation Apply(IExecutionContext context) { 70 70 int parentsPerChild = ParentsPerChildParameter.ActualValue.Value; 71 71 int parents = CurrentScope.SubScopes.Count; … … 82 82 CurrentScope.SubScopes.Add(child); 83 83 } 84 return base.Apply( );84 return base.Apply(context); 85 85 } 86 86 }
Note: See TracChangeset
for help on using the changeset viewer.