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

    r4722 r5177  
    9595    /// </remarks>
    9696    /// <returns>What the base class returns.</returns>
    97     public override IOperation Apply() {
     97    public override IOperation Apply(IExecutionContext context) {
    9898      int index = IndexParameter.ActualValue.Value, startIndex = StartIndexParameter.ActualValue.Value;
    9999      if (index >= startIndex) {
     
    115115        value.Value = newValue;
    116116      }
    117       return base.Apply();
     117      return base.Apply(context);
    118118    }
    119119
Note: See TracChangeset for help on using the changeset viewer.