- Timestamp:
- 06/04/12 21:50:19 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/HeuristicLab.Problems.Instances.VehicleRouting-3.4.csproj
r7901 r7956 115 115 <Compile Include="GoldenFormat\GoldenParser.cs" /> 116 116 <Compile Include="GoldenFormat\GoldenFormatInstanceProvider.cs" /> 117 <Compile Include="IVRPInstanceProvider.cs" /> 117 118 <Compile Include="TaillardFormat\TaillardInstanceProvider.cs" /> 118 119 <Compile Include="TaillardFormat\TaillardParser.cs" /> -
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/VRPInstanceProvider.cs
r7881 r7956 29 29 30 30 namespace HeuristicLab.Problems.Instances.VehicleRouting { 31 public abstract class VRPInstanceProvider<T> : ProblemInstanceProvider<T> where T : IVRPData {31 public abstract class VRPInstanceProvider<T> : ProblemInstanceProvider<T>, IVRPInstanceProvider where T : IVRPData { 32 32 protected abstract string FileName { get; } 33 33 … … 110 110 } 111 111 112 public TLoadData(string vrpFile, string tourFile) {112 public IVRPData LoadData(string vrpFile, string tourFile) { 113 113 var data = LoadData(vrpFile); 114 114 if (!String.IsNullOrEmpty(tourFile)) {
Note: See TracChangeset
for help on using the changeset viewer.