Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11071


Ignore:
Timestamp:
07/02/14 13:36:46 (10 years ago)
Author:
abeham
Message:

#2204: simplified change

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/PathTSPTourView.cs

    r11060 r11071  
    111111                Point[] tour = new Point[permutation.Length];
    112112                for (int i = 0; i < permutation.Length; i++) {
    113                   if (permutation[i] >= 0 && permutation[i] < points.Length)
    114                     tour[i] = points[permutation[i]];
     113                  tour[i] = points[permutation[i]];
    115114                }
    116115                graphics.DrawPolygon(Pens.Black, tour);
Note: See TracChangeset for help on using the changeset viewer.