Changeset 7882 for branches/VRP
- Timestamp:
- 05/23/12 17:41:54 (13 years ago)
- Location:
- branches/VRP
- Files:
-
- 4 added
- 1 deleted
- 4 edited
- 3 copied
- 10 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting.Views/3.4/VRPImportDialog.Designer.cs
r7881 r7882 92 92 this.tspFileLabel.Size = new System.Drawing.Size(51, 13); 93 93 this.tspFileLabel.TabIndex = 0; 94 this.tspFileLabel.Text = "& VRPFile:";94 this.tspFileLabel.Text = "&Problem File:"; 95 95 // 96 96 // openVRPFileButton … … 123 123 this.tourFileLabel.Size = new System.Drawing.Size(119, 13); 124 124 this.tourFileLabel.TabIndex = 5; 125 this.tourFileLabel.Text = "&Optimal VRPTours File:";125 this.tourFileLabel.Text = "&Optimal Tours File:"; 126 126 // 127 127 // openTourFileButton -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting.Views/3.4/VRPImportDialog.cs
r7881 r7882 37 37 } 38 38 39 public VRPImportDialog( ) {39 public VRPImportDialog(string format) { 40 40 InitializeComponent(); 41 41 vrpFileName = string.Empty; 42 42 tourFileName = string.Empty; 43 Text += " in " + format + " Format"; 43 44 } 44 45 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting.Views/3.4/VRPInstanceProviderView.cs
r7881 r7882 42 42 43 43 protected override void importButton_Click(object sender, EventArgs e) { 44 using (var dialog = new VRPImportDialog( )) {44 using (var dialog = new VRPImportDialog(Content.Name)) { 45 45 if (dialog.ShowDialog() == DialogResult.OK) { 46 46 var instance = Content.LoadData(dialog.VRPFileName, dialog.TourFileName); -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/CordeauFormat/CordeauInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/HeuristicLab.Problems.Instances.VehicleRouting-3.4.csproj
r7881 r7882 120 120 </ItemGroup> 121 121 <ItemGroup> 122 <Compile Include=" AugeratInstanceProvider.cs" />123 <Compile Include=" ChristofidesEilonInstanceProvider.cs" />124 <Compile Include="Cordeau InstanceProvider.cs" />125 <Compile Include="CordeauFormat InstanceProvider.cs" />126 <Compile Include="LiLim InstanceProvider.cs" />127 <Compile Include="LiLimFormat InstanceProvider.cs" />128 <Compile Include=" HombergerInstanceProvider.cs" />129 <Compile Include=" Parsers\LiLimParser.cs" />130 <Compile Include=" Parsers\CordeauParser.cs" />131 <Compile Include="Solomon InstanceProvider.cs" />132 <Compile Include="SolomonFormat InstanceProvider.cs" />133 <Compile Include=" Parsers\SolomonParser.cs" />134 <Compile Include="TSPLibFormat InstanceProvider.cs" />122 <Compile Include="TSPLibFormat\AugeratInstanceProvider.cs" /> 123 <Compile Include="TSPLibFormat\ChristofidesEilonInstanceProvider.cs" /> 124 <Compile Include="CordeauFormat\CordeauInstanceProvider.cs" /> 125 <Compile Include="CordeauFormat\CordeauFormatInstanceProvider.cs" /> 126 <Compile Include="LiLimFormat\LiLimInstanceProvider.cs" /> 127 <Compile Include="LiLimFormat\LiLimFormatInstanceProvider.cs" /> 128 <Compile Include="SolomonFormat\HombergerInstanceProvider.cs" /> 129 <Compile Include="LiLimFormat\LiLimParser.cs" /> 130 <Compile Include="CordeauFormat\CordeauParser.cs" /> 131 <Compile Include="SolomonFormat\SolomonInstanceProvider.cs" /> 132 <Compile Include="SolomonFormat\SolomonFormatInstanceProvider.cs" /> 133 <Compile Include="SolomonFormat\SolomonParser.cs" /> 134 <Compile Include="TSPLibFormat\TSPLibFormatInstanceProvider.cs" /> 135 135 <Compile Include="VRPInstanceProvider.cs" /> 136 136 <Compile Include="VRPDataDescriptor.cs" /> -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/LiLimFormat/LiLimInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat/HombergerInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat/SolomonInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/TSPLibFormat/AugeratInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47 -
branches/VRP/HeuristicLab.Problems.Instances.VehicleRouting/3.4/TSPLibFormat/ChristofidesEilonInstanceProvider.cs
r7881 r7882 43 43 44 44 public override string ReferencePublication { 45 get { return "none"; }45 get { return null; } 46 46 } 47 47
Note: See TracChangeset
for help on using the changeset viewer.