- Timestamp:
- 09/02/14 15:41:57 (10 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11285-11287,11331
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/ChristofidesInstanceProvider.cs
r11170 r11333 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.IO;25 using System.Linq;26 using System.Reflection;27 using System.Text.RegularExpressions;28 using ICSharpCode.SharpZipLib.Zip;29 23 30 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { … … 37 31 get { return "Christofides test set"; } 38 32 } 39 33 40 34 public override Uri WebLink { 41 get { return new Uri(@"http://www. rhsmith.umd.edu/faculty/bgolden/vrp_data.htm"); }35 get { return new Uri(@"http://www.terpconnect.umd.edu/~bgolden/vrp_data.htm"); } 42 36 } 43 37 -
stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/GoldenFormatInstanceProvider.cs
r11170 r11333 24 24 25 25 namespace HeuristicLab.Problems.Instances.VehicleRouting { 26 public abstract class GoldenFormatInstanceProvider : VRPInstanceProvider {27 protected override VRPData LoadData(Stream stream) {26 public abstract class GoldenFormatInstanceProvider : VRPInstanceProvider<CVRPTWData> { 27 protected override CVRPTWData LoadData(Stream stream) { 28 28 return LoadInstance(new GoldenParser(stream)); 29 29 } … … 32 32 get { return true; } 33 33 } 34 public override VRPData ImportData(string path) {34 public override CVRPTWData ImportData(string path) { 35 35 return LoadInstance(new GoldenParser(path)); 36 36 } -
stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/GoldenInstanceProvider.cs
r11170 r11333 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.IO;25 using System.Linq;26 using System.Reflection;27 using System.Text.RegularExpressions;28 using ICSharpCode.SharpZipLib.Zip;29 23 30 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { … … 37 31 get { return "Golden test set"; } 38 32 } 39 33 40 34 public override Uri WebLink { 41 get { return new Uri(@"http://www. rhsmith.umd.edu/faculty/bgolden/vrp_data.htm"); }35 get { return new Uri(@"http://www.terpconnect.umd.edu/~bgolden/vrp_data.htm"); } 42 36 } 43 37 -
stable/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/KytojokiInstanceProvider.cs
r11170 r11333 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.IO;25 using System.Linq;26 using System.Reflection;27 using System.Text.RegularExpressions;28 using ICSharpCode.SharpZipLib.Zip;29 23 30 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { … … 37 31 get { return "Kytojoki test set"; } 38 32 } 39 33 40 34 public override Uri WebLink { 41 get { return new Uri(@"http://www. rhsmith.umd.edu/faculty/bgolden/vrp_data.htm"); }35 get { return new Uri(@"http://www.terpconnect.umd.edu/~bgolden/vrp_data.htm"); } 42 36 } 43 37
Note: See TracChangeset
for help on using the changeset viewer.