Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/04/11 11:44:37 (12 years ago)
Author:
svonolfe
Message:

Fixed small issues in view and crossover (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/MDCVRPPDTWView.cs

    r6856 r6947  
    170170          } else {
    171171            {
    172               Point[] locationPoints = new Point[coordinates.Rows];
     172              Point[] locationPoints = new Point[cities];
    173173              //just draw customers
    174               for (int i = 1; i < coordinates.Rows; i++) {
    175                 locationPoints[i] = new Point(border + ((int)((coordinates[i, 0] - xMin) * xStep)),
    176                                 bitmap.Height - (border + ((int)((coordinates[i, 1] - yMin) * yStep))));
     174              for (int i = 0; i < cities; i++) {
     175                locationPoints[i] = new Point(border + ((int)((Content.GetCoordinates(i + 1)[0] - xMin) * xStep)),
     176                                bitmap.Height - (border + ((int)((Content.GetCoordinates(i + 1)[1] - yMin) * yStep))));
    177177
    178178                graphics.FillRectangle(Brushes.Black, locationPoints[i].X - 3, locationPoints[i].Y - 3, 6, 6);
     
    182182                for (int i = 0; i < cities; i++) {
    183183                  if (demand[i] < 0) {
    184                     graphics.DrawLine(flowPen, locationPoints[pickupDeliveryLocation[i]], locationPoints[i + 1]);
     184                    graphics.DrawLine(flowPen, locationPoints[pickupDeliveryLocation[i] - 1], locationPoints[i]);
    185185                  }
    186186                }
Note: See TracChangeset for help on using the changeset viewer.