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.Analysis/3.3/MultiObjective/RankBasedParetoFrontAnalyzer.cs

    r5143 r5177  
    4444    }
    4545
    46     protected override void Analyze(ItemArray<DoubleArray> qualities, ResultCollection results) {
     46    protected override void Analyze(IExecutionContext context, ItemArray<DoubleArray> qualities, ResultCollection results) {
    4747      ItemArray<IntValue> ranks = RankParameter.ActualValue;
    4848
     
    6161            front[counter, k] = qualities[i][k];
    6262          if (populationLevel) {
    63             paretoArchive[counter] = (IScope)ExecutionContext.Scope.SubScopes[i].Clone();
     63            paretoArchive[counter] = (IScope)context.Scope.SubScopes[i].Clone();
    6464          }
    6565          counter++;
Note: See TracChangeset for help on using the changeset viewer.