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

    r4722 r5177  
    5959    }
    6060
    61     public sealed override IOperation Apply() {
     61    public sealed override IOperation Apply(IExecutionContext context) {
    6262      RealVector vector = RealVectorParameter.ActualValue;
    6363      Manipulate(RandomParameter.ActualValue, vector);
    6464      DoubleMatrix bounds = BoundsParameter.ActualValue;
    6565      if (bounds != null) BoundsChecker.Apply(vector, bounds);
    66       return base.Apply();
     66      return base.Apply(context);
    6767    }
    6868
Note: See TracChangeset for help on using the changeset viewer.