- Timestamp:
- 03/29/11 15:40:01 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Crossovers/PrinsPermutationCrossover.cs
r4752 r5867 58 58 IAtomicOperation op = this.ExecutionContext.CreateOperation( 59 59 InnerCrossoverParameter.ActualValue, this.ExecutionContext.Scope); 60 op.Operator.Execute((IExecutionContext)op );60 op.Operator.Execute((IExecutionContext)op, CancellationToken); 61 61 62 62 string childName = InnerCrossoverParameter.ActualValue.ChildParameter.ActualName; -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Prins/Manipulators/PrinsPermutationManipulator.cs
r4752 r5867 56 56 IAtomicOperation op = this.ExecutionContext.CreateOperation( 57 57 InnerManipulatorParameter.ActualValue, this.ExecutionContext.Scope); 58 op.Operator.Execute((IExecutionContext)op );58 op.Operator.Execute((IExecutionContext)op, CancellationToken); 59 59 } 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.