Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/AlbaMoveOperator.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/AlbaMoveOperator.cs
r4722 r5177 36 36 } 37 37 38 public override IOperation Apply( ) {38 public override IOperation Apply(IExecutionContext context) { 39 39 IVRPEncoding solution = VRPToursParameter.ActualValue; 40 40 if (!(solution is AlbaEncoding)) { … … 43 43 } 44 44 45 return base.Apply( );45 return base.Apply(context); 46 46 } 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.