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.Problems.VehicleRouting/3.3/Encodings/GVR/Crossovers/GVRCrossover.cs

    r4722 r5177  
    101101    }
    102102   
    103     public override IOperation Apply() {
     103    public override IOperation Apply(IExecutionContext context) {
    104104      ItemArray<IVRPEncoding> parents = new ItemArray<IVRPEncoding>(ParentsParameter.ActualValue.Length);
    105105      for (int i = 0; i < ParentsParameter.ActualValue.Length; i++) {
     
    116116      ChildParameter.ActualValue = Crossover(RandomParameter.ActualValue, parents[0] as GVREncoding, parents[1] as GVREncoding);
    117117
    118       return base.Apply();
     118      return base.Apply(context);
    119119    }
    120120  }
Note: See TracChangeset for help on using the changeset viewer.