Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/12 10:15:50 (12 years ago)
Author:
svonolfe
Message:

Fixed minor issues (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs

    r6885 r7543  
    177177
    178178      for (int i = 0; i < distanceMatrix.Rows; i++) {
    179         for (int j = i; j < distanceMatrix.Columns; j++) {
     179        for (int j = 0; j < distanceMatrix.Columns; j++) {
    180180          double distance = CalculateDistance(i, j);
    181181
    182182          distanceMatrix[i, j] = distance;
    183           distanceMatrix[j, i] = distance;
    184183        }
    185184      }
Note: See TracChangeset for help on using the changeset viewer.