- Timestamp:
- 06/26/17 15:19:25 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14478,14481-14482,14504
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting merged: 14481-14482
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs
r14186 r15066 190 190 public virtual double GetDistance(int start, int end, IVRPEncoding solution) { 191 191 if (distanceMatrix == null && UseDistanceMatrix.Value) { 192 if (DistanceMatrix == null) DistanceMatrix = CreateDistanceMatrix(); 193 distanceMatrix = DistanceMatrix; 192 distanceMatrix = DistanceMatrix ?? CreateDistanceMatrix(); 194 193 } 195 194
Note: See TracChangeset
for help on using the changeset viewer.