Changeset 6758 for trunk/sources/HeuristicLab.Problems.VehicleRouting
- Timestamp:
- 09/14/11 10:43:23 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Prins/PrinsEncoding.cs
r6449 r6758 86 86 V[0] = 0; 87 87 for (int i = 1; i <= cities; i++) { 88 V[i] = int.MaxValue;88 V[i] = double.MaxValue; 89 89 } 90 90
Note: See TracChangeset
for help on using the changeset viewer.