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.Operators/3.3/Comparator.cs

    r4722 r5177  
    6868    }
    6969
    70     public override IOperation Apply() {
     70    public override IOperation Apply(IExecutionContext context) {
    7171      IItem left = LeftSideParameter.ActualValue;
    7272      IItem right = RightSideParameter.ActualValue;
     
    9191      }
    9292      ResultParameter.ActualValue = new BoolValue(b);
    93       return base.Apply();
     93      return base.Apply(context);
    9494    }
    9595  }
Note: See TracChangeset for help on using the changeset viewer.