Changeset 5867 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator
- Timestamp:
- 03/29/11 15:40:01 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveEvaluator.cs
r4752 r5867 58 58 moveEvaluator.VRPMoveParameter.ActualName = VRPMoveParameter.Name; 59 59 IAtomicOperation op = this.ExecutionContext.CreateOperation(moveEvaluator); 60 op.Operator.Execute((IExecutionContext)op );60 op.Operator.Execute((IExecutionContext)op, CancellationToken); 61 61 } 62 62 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveMaker.cs
r4752 r5867 60 60 moveMaker.VRPMoveParameter.ActualName = VRPMoveParameter.Name; 61 61 IAtomicOperation op = this.ExecutionContext.CreateOperation(moveMaker); 62 op.Operator.Execute((IExecutionContext)op );62 op.Operator.Execute((IExecutionContext)op, CancellationToken); 63 63 } 64 64 }
Note: See TracChangeset
for help on using the changeset viewer.