Changeset 8206 for branches/GP-MoveOperators/HeuristicLab.Problems.Instances.VehicleRouting/3.4/TSPLibFormat
- Timestamp:
- 07/03/12 16:46:35 (13 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:mergeinfo changed
/trunk/sources merged: 8084,8088-8090,8092-8100,8102-8113,8115,8117-8132,8134-8146,8148-8156,8158-8160,8163-8170,8173-8176,8178-8190,8192-8205
- Property svn:mergeinfo changed
-
branches/GP-MoveOperators/HeuristicLab.Problems.Instances.VehicleRouting/3.4/TSPLibFormat/TSPLibFormatInstanceProvider.cs
r7882 r8206 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 24 using HeuristicLab.Problems.Instances.TSPLIB; 30 25 … … 35 30 } 36 31 37 public override CVRPData LoadData(string path) { 32 public override bool CanImportData { 33 get { return true; } 34 } 35 public override CVRPData ImportData(string path) { 38 36 return LoadInstance(new TSPLIBParser(path)); 39 37 }
Note: See TracChangeset
for help on using the changeset viewer.