Changeset 11294
- Timestamp:
- 08/25/14 09:19:26 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/CordeauFormat/CordeauMDInstanceProvider.cs
r11293 r11294 23 23 24 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { 25 public class Cordeau InstanceProvider : CordeauFormatInstanceProvider<MDCVRPData> {25 public class CordeauMDInstanceProvider : CordeauFormatInstanceProvider<MDCVRPData> { 26 26 public override string Name { 27 27 get { return "Cordeau (MDCVRP)"; } -
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/CordeauFormat/CordeauMDTWInstanceProvider.cs
r11293 r11294 23 23 24 24 namespace HeuristicLab.Problems.Instances.VehicleRouting { 25 public class Cordeau TWInstanceProvider : CordeauFormatInstanceProvider<MDCVRPTWData> {25 public class CordeauMDTWInstanceProvider : CordeauFormatInstanceProvider<MDCVRPTWData> { 26 26 public override string Name { 27 27 get { return "Cordeau (MDCVRPTW)"; } -
trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/HeuristicLab.Problems.Instances.VehicleRouting-3.4.csproj
r11292 r11294 111 111 </ItemGroup> 112 112 <ItemGroup> 113 <Compile Include="CordeauFormat\Cordeau TWInstanceProvider.cs" />113 <Compile Include="CordeauFormat\CordeauMDTWInstanceProvider.cs" /> 114 114 <Compile Include="GoldenFormat\ChristofidesInstanceProvider.cs" /> 115 115 <Compile Include="GoldenFormat\KytojokiInstanceProvider.cs" /> … … 123 123 <Compile Include="TSPLibFormat\AugeratInstanceProvider.cs" /> 124 124 <Compile Include="TSPLibFormat\ChristofidesEilonInstanceProvider.cs" /> 125 <Compile Include="CordeauFormat\Cordeau InstanceProvider.cs" />125 <Compile Include="CordeauFormat\CordeauMDInstanceProvider.cs" /> 126 126 <Compile Include="CordeauFormat\CordeauFormatInstanceProvider.cs" /> 127 127 <Compile Include="LiLimFormat\LiLimInstanceProvider.cs" />
Note: See TracChangeset
for help on using the changeset viewer.