- Timestamp:
- 08/25/14 15:08:23 (10 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11290
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.TravelingSalesman.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views merged: 11290
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.TravelingSalesman.Views/3.3/PathTSPTourView.cs
r11170 r11297 111 111 Point[] tour = new Point[permutation.Length]; 112 112 for (int i = 0; i < permutation.Length; i++) { 113 tour[i] = points[permutation[i]]; 113 if (permutation[i] >= 0 && permutation[i] < points.Length) 114 tour[i] = points[permutation[i]]; 114 115 } 115 116 graphics.DrawPolygon(Pens.Black, tour);
Note: See TracChangeset
for help on using the changeset viewer.