Changeset 10538 for branches/DataPreprocessing/HeuristicLab.Problems.Instances.VehicleRouting/3.4/LiLimFormat
- Timestamp:
- 03/05/14 14:48:13 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Problems.Instances.VehicleRouting/3.4/LiLimFormat/LiLimFormatInstanceProvider.cs
r9456 r10538 23 23 24 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { 25 public abstract class LiLimFormatInstanceProvider : VRPInstanceProvider <PDPTWData>{26 protected override PDPTWData LoadData(Stream stream) {25 public abstract class LiLimFormatInstanceProvider : VRPInstanceProvider { 26 protected override VRPData LoadData(Stream stream) { 27 27 return LoadInstance(new LiLimParser(stream)); 28 28 } … … 31 31 get { return true; } 32 32 } 33 public override PDPTWData ImportData(string path) {33 public override VRPData ImportData(string path) { 34 34 return LoadInstance(new LiLimParser(path)); 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.