- Timestamp:
- 08/23/10 14:26:13 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Moves
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Moves/Interfaces/IVRPMove.cs
r4287 r4288 34 34 ILookupParameter<DoubleMatrix> distanceMatrix, BoolValue useDistanceMatrix); 35 35 36 IVRPEncoding MakeMove( IRandom random);36 IVRPEncoding MakeMove(); 37 37 } 38 38 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Moves/MultiVRPMoveOperator/MultiVRPMoveMaker.cs
r4287 r4288 114 114 115 115 //perform move 116 VRPToursParameter.ActualValue = move.MakeMove( RandomParameter.ActualValue);116 VRPToursParameter.ActualValue = move.MakeMove(); 117 117 118 118 quality.Value = moveQuality.Value;
Note: See TracChangeset
for help on using the changeset viewer.