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

    r4722 r5177  
    8080    /// <remarks>Calls <see cref="Apply(RealVector, DoubleMatrix)"/>.</remarks>
    8181    /// <inheritdoc select="returns" />
    82     public override IOperation Apply() {
     82    public override IOperation Apply(IExecutionContext context) {
    8383      if (RealVectorParameter.ActualValue == null) throw new InvalidOperationException("BoundsChecker: Parameter " + RealVectorParameter.ActualName + " could not be found.");
    8484      if (BoundsParameter.ActualValue == null) throw new InvalidOperationException("BoundsChecker: Parameter " + BoundsParameter.ActualName + " could not be found.");
    8585      Apply(RealVectorParameter.ActualValue, BoundsParameter.ActualValue);
    86       return base.Apply();
     86      return base.Apply(context);
    8787    }
    8888  }
Note: See TracChangeset for help on using the changeset viewer.