- Timestamp:
- 09/14/12 18:58:15 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Problems.TravelingSalesman/3.3/Evaluators/TSPDistanceMatrixEvaluator.cs
r7558 r8660 59 59 if (distances == null || distances.Rows == 0 || distances.Columns == 0 60 60 || distances.Rows != distances.Columns) 61 throw new InvalidOperationException("T he distance matrix is empty or not square");62 if (tour == null) throw new ArgumentNullException("tour", " No tour is given.");61 throw new InvalidOperationException("TSPDistanceMatrixEvaluator: The distance matrix is empty or not square"); 62 if (tour == null) throw new ArgumentNullException("tour", "TSPDistanceMatrixEvaluator: No tour is given."); 63 63 Permutation p = tour; 64 64 double length = 0;
Note: See TracChangeset
for help on using the changeset viewer.