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/Analyzers/BestVRPToursMemorizer.cs

    r4722 r5177  
    8989    }
    9090
    91     public override IOperation Apply() {
     91    public override IOperation Apply(IExecutionContext context) {
    9292      int i = OverloadParameter.ActualValue.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).First().index;
    9393      if (BestOverloadParameter.ActualValue == null)
     
    120120        BestVehiclesUtilizedParameter.ActualValue.Value = VehiclesUtilizedParameter.ActualValue[i].Value;
    121121
    122       return base.Apply();
     122      return base.Apply(context);
    123123    }
    124124  }
Note: See TracChangeset for help on using the changeset viewer.