Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/ThreeOpt/AlbaTranslocationMoveMaker.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/ThreeOpt/AlbaTranslocationMoveMaker.cs
r5129 r5177 61 61 return new AlbaTranslocationMoveMaker(this, cloner); 62 62 } 63 public override IOperation Apply( ) {64 IOperation next = base.Apply( );63 public override IOperation Apply(IExecutionContext context) { 64 IOperation next = base.Apply(context); 65 65 66 66 IVRPEncoding solution = VRPToursParameter.ActualValue; 67 67 68 68 moveMaker.PermutationParameter.ActualName = VRPToursParameter.ActualName; 69 IAtomicOperation op = this.ExecutionContext.CreateChildOperation(moveMaker);69 IAtomicOperation op = context.CreateChildOperation(moveMaker); 70 70 op.Operator.Execute((IExecutionContext)op); 71 71
Note: See TracChangeset
for help on using the changeset viewer.