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.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorManipulator.cs

    r4722 r5177  
    102102    /// <remarks>Calls <see cref="OperatorBase.Apply"/> of base class <see cref="OperatorBase"/>.</remarks>
    103103    /// <inheritdoc select="returns"/>
    104     public override IOperation Apply() {
     104    public override IOperation Apply(IExecutionContext context) {
    105105      RealVector strategyParams = StrategyParameterParameter.ActualValue;
    106106      if (strategyParams != null) { // only apply if there is a strategy vector
     
    110110        Apply(random, strategyParams, tau0, tau, BoundsParameter.ActualValue);
    111111      }
    112       return base.Apply();
     112      return base.Apply(context);
    113113    }
    114114  }
Note: See TracChangeset for help on using the changeset viewer.