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.Problems.TestFunctions/3.3/MoveEvaluators/AdditiveMoveEvaluator.cs

    r4722 r5177  
    6363    }
    6464
    65     public override IOperation Apply() {
     65    public override IOperation Apply(IExecutionContext context) {
    6666      double mq = Evaluate(QualityParameter.ActualValue.Value, RealVectorParameter.ActualValue, AdditiveMoveParameter.ActualValue);
    6767      DoubleValue moveQuality = MoveQualityParameter.ActualValue;
     
    6969        MoveQualityParameter.ActualValue = new DoubleValue(mq);
    7070      } else moveQuality.Value = mq;
    71       return base.Apply();
     71      return base.Apply(context);
    7272    }
    7373
Note: See TracChangeset for help on using the changeset viewer.