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

    r4722 r5177  
    6666    }
    6767
    68     public override IOperation Apply() {
     68    public override IOperation Apply(IExecutionContext context) {
    6969      ItemArray<DoubleValue> rightQualities = RightSideParameter.ActualValue;
    7070      if (rightQualities.Length < 1) throw new InvalidOperationException(Name + ": No subscopes found.");
     
    122122      }
    123123
    124       return base.Apply();
     124      return base.Apply(context);
    125125    }
    126126  }
Note: See TracChangeset for help on using the changeset viewer.