Changeset 5193 for trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Prins/Manipulators
- Timestamp:
- 01/03/11 00:46:55 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/ParallelEngine (added) merged: 5175-5178,5183,5185,5187-5188
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting (added) merged: 5177-5178,5185
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Prins/Manipulators/PrinsPermutationManipulator.cs
r4722 r5193 42 42 public PrinsPermutationManipulator() 43 43 : base() { 44 44 Parameters.Add(new ValueLookupParameter<IPermutationManipulator>("InnerManipulator", "The permutation manipulator.", new TranslocationManipulator())); 45 45 } 46 46 … … 50 50 IAtomicOperation op = this.ExecutionContext.CreateOperation( 51 51 InnerManipulatorParameter.ActualValue, this.ExecutionContext.Scope); 52 op.Operator.Execute((IExecutionContext)op );52 op.Operator.Execute((IExecutionContext)op, CancellationToken); 53 53 } 54 54 }
Note: See TracChangeset
for help on using the changeset viewer.