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

    r4722 r5177  
    4646    }
    4747
    48     protected override void Manipulate(IRandom random, AlbaEncoding individual) {
     48    protected override void Manipulate(IExecutionContext context, IRandom random, AlbaEncoding individual) {
    4949      InnerManipulatorParameter.ActualValue.PermutationParameter.ActualName = VRPToursParameter.ActualName;
    5050
    51       IAtomicOperation op = this.ExecutionContext.CreateOperation(
    52         InnerManipulatorParameter.ActualValue, this.ExecutionContext.Scope);
     51      IAtomicOperation op = context.CreateOperation(
     52        InnerManipulatorParameter.ActualValue, context.Scope);
    5353      op.Operator.Execute((IExecutionContext)op);
    5454    }
Note: See TracChangeset for help on using the changeset viewer.