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/Alba/Moves/ThreeOpt/AlbaTranslocationMoveMaker.cs

    r5129 r5177  
    6161      return new AlbaTranslocationMoveMaker(this, cloner);
    6262    }
    63     public override IOperation Apply() {
    64       IOperation next = base.Apply();
     63    public override IOperation Apply(IExecutionContext context) {
     64      IOperation next = base.Apply(context);
    6565
    6666      IVRPEncoding solution = VRPToursParameter.ActualValue;
    6767
    6868      moveMaker.PermutationParameter.ActualName = VRPToursParameter.ActualName;
    69       IAtomicOperation op = this.ExecutionContext.CreateChildOperation(moveMaker);
     69      IAtomicOperation op = context.CreateChildOperation(moveMaker);
    7070      op.Operator.Execute((IExecutionContext)op);
    7171
Note: See TracChangeset for help on using the changeset viewer.