- Timestamp:
- 07/03/12 13:41:36 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/GoldenFormatInstanceProvider.cs
r7887 r8192 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using System.IO; 25 using System.Linq;26 using System.Reflection;27 using System.Text.RegularExpressions;28 using ICSharpCode.SharpZipLib.Zip;29 using HeuristicLab.Problems.Instances.TSPLIB;30 24 31 25 namespace HeuristicLab.Problems.Instances.VehicleRouting { … … 35 29 } 36 30 37 public override CVRPTWData LoadData(string path) { 31 public override bool CanImportData { 32 get { return true; } 33 } 34 public override CVRPTWData ImportData(string path) { 38 35 return LoadInstance(new GoldenParser(path)); 39 36 } … … 66 63 } 67 64 68 if (parser.Distance > 0)65 if (parser.Distance > 0) 69 66 instance.DueTimes[0] = parser.Distance; 70 67
Note: See TracChangeset
for help on using the changeset viewer.