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

    r4722 r5177  
    5959    }
    6060
    61     public override IOperation Apply() {
     61    public override IOperation Apply(IExecutionContext context) {
    6262      DoubleValue left = LeftSideParameter.ActualValue;
    6363      DoubleValue right = RightSideParameter.ActualValue;
     
    6767        ResultParameter.ActualValue = new BoolValue(better);
    6868      else ResultParameter.ActualValue.Value = better;
    69       return base.Apply();
     69      return base.Apply(context);
    7070    }
    7171
Note: See TracChangeset for help on using the changeset viewer.