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/ChildrenCreator.cs

    r4722 r5177  
    6767    }
    6868
    69     public override IOperation Apply() {
     69    public override IOperation Apply(IExecutionContext context) {
    7070      int parentsPerChild = ParentsPerChildParameter.ActualValue.Value;
    7171      int parents = CurrentScope.SubScopes.Count;
     
    8282        CurrentScope.SubScopes.Add(child);
    8383      }
    84       return base.Apply();
     84      return base.Apply(context);
    8585    }
    8686  }
Note: See TracChangeset for help on using the changeset viewer.