Changeset 4752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/VRPMoveEvaluator.cs
- Timestamp:
- 11/09/10 09:55:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/VRPMoveEvaluator.cs
r4369 r4752 30 30 using HeuristicLab.Parameters; 31 31 using HeuristicLab.Problems.VehicleRouting.Interfaces; 32 using HeuristicLab.Common; 32 33 33 34 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { … … 51 52 Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of the solution.")); 52 53 Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The relative quality of the move.")); 54 } 55 56 protected VRPMoveEvaluator(VRPMoveEvaluator original, Cloner cloner) 57 : base(original, cloner) { 53 58 } 54 59
Note: See TracChangeset
for help on using the changeset viewer.