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/Zhu/Manipulators/ZhuPermutationManipulator.cs

    r4722 r5177  
    4747    }
    4848
    49     protected override void Manipulate(IRandom random, ZhuEncoding individual) {
     49    protected override void Manipulate(IExecutionContext context, IRandom random, ZhuEncoding individual) {
    5050      InnerManipulatorParameter.ActualValue.PermutationParameter.ActualName = VRPToursParameter.ActualName;
    5151
    52       IAtomicOperation op = this.ExecutionContext.CreateOperation(
    53         InnerManipulatorParameter.ActualValue, this.ExecutionContext.Scope);
     52      IAtomicOperation op = context.CreateOperation(
     53        InnerManipulatorParameter.ActualValue, context.Scope);
    5454      op.Operator.Execute((IExecutionContext)op);
    5555    }
Note: See TracChangeset for help on using the changeset viewer.