Changeset 6851 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/GVR/Crossovers/GVRCrossover.cs
- Timestamp:
- 09/29/11 15:51:56 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/GVR/Crossovers/GVRCrossover.cs
r4752 r6851 82 82 for (int i = 1; i <= ProblemInstance.Cities.Value; i++) { 83 83 if (!subroute.Contains(i)) { 84 double distance = ProblemInstance.GetDistance(subroute[0], i );84 double distance = ProblemInstance.GetDistance(subroute[0], i, child); 85 85 86 86 if (customer == -1 || distance < minDistance) {
Note: See TracChangeset
for help on using the changeset viewer.