- Timestamp:
- 10/08/14 16:21:42 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/VRPInterpreter.cs
r11171 r11428 20 20 #endregion 21 21 22 using System.IO; 22 23 using HeuristicLab.Data; 23 24 using HeuristicLab.Problems.Instances; … … 44 45 } 45 46 47 if (data.BestKnownTourVehicleAssignment != null) { 48 if (data.BestKnownTourVehicleAssignment.Length != solution.VehicleAssignment.Length) 49 throw new InvalidDataException("Number of vehicles of the best known tour does not match the number vehicles of the instance."); 50 for (int i = 0; i < data.BestKnownTourVehicleAssignment.Length; i++) 51 solution.VehicleAssignment[i] = data.BestKnownTourVehicleAssignment[i]; 52 } 53 46 54 return solution; 47 55 } else { … … 51 59 52 60 protected abstract IVRPProblemInstance CreateProblemInstance(); 53 61 54 62 public VRPInstanceDescription Interpret(IVRPData data) { 55 63 VRPInstanceDescription result = new VRPInstanceDescription();
Note: See TracChangeset
for help on using the changeset viewer.