Changeset 4068 for trunk/sources/HeuristicLab.Problems.VehicleRouting.Views
- Timestamp:
- 07/22/10 00:44:01 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VRPSolutionView.cs
r4016 r4068 25 25 using HeuristicLab.Core.Views; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.Encodings.PermutationEncoding;28 27 using HeuristicLab.MainForm; 29 28 using HeuristicLab.Problems.VehicleRouting.Encodings; … … 172 171 currentTour++; 173 172 } 174 } 173 } 175 174 } 176 175 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VehicleRoutingProblemView.cs
r3938 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 using System.Text;28 23 using System.Windows.Forms; 29 24 using HeuristicLab.MainForm; 30 25 using HeuristicLab.Optimization.Views; 31 using HeuristicLab.Problems.VehicleRouting;32 26 33 27 namespace HeuristicLab.Problems.VehicleRouting.Views { … … 39 33 set { base.Content = value; } 40 34 } 41 35 42 36 public VehicleRoutingProblemView() { 43 37 InitializeComponent();
Note: See TracChangeset
for help on using the changeset viewer.