Changeset 14542 for branches/symbreg-factors-2650/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat
- Timestamp:
- 01/04/17 16:33:37 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources merged: 14504,14506-14509,14516-14517,14519,14522-14523,14527-14529,14531-14533
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat/SolomonFormatInstanceProvider.cs
r14498 r14542 21 21 22 22 using System; 23 using System.Globalization; 23 24 using System.IO; 24 25 using System.Linq; … … 74 75 break; 75 76 case "Distance": 76 double quality = double.Parse(reader.ReadLine() );77 double quality = double.Parse(reader.ReadLine(), CultureInfo.InvariantCulture); 77 78 instance.BestKnownQuality = quality; 78 79 break; -
branches/symbreg-factors-2650/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat/SolomonParser.cs
r14185 r14542 143 143 144 144 vehicles = int.Parse(m[0].Value); 145 capacity = double.Parse(m[1].Value );145 capacity = double.Parse(m[1].Value, System.Globalization.CultureInfo.InvariantCulture); 146 146 147 147 for (int i = 0; i < 4; i++) {
Note: See TracChangeset
for help on using the changeset viewer.