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

    r4722 r5177  
    6565    }
    6666
    67     public sealed override IOperation Apply() {
     67    public sealed override IOperation Apply(IExecutionContext context) {
    6868      RealVector result = Cross(RandomParameter.ActualValue, ParentsParameter.ActualValue);
    6969      DoubleMatrix bounds = BoundsParameter.ActualValue;
    7070      if (bounds != null) BoundsChecker.Apply(result, bounds);
    7171      ChildParameter.ActualValue = result;
    72       return base.Apply();
     72      return base.Apply(context);
    7373    }
    7474
Note: See TracChangeset for help on using the changeset viewer.