- Timestamp:
- 11/17/13 11:50:56 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/DistanceMatrixToPoints.cs
r10127 r10139 82 82 double[,] v; //eigenvectors 83 83 84 if (n < k) 85 throw new ArgumentException("Distance matrix length must be greater than dimension", "k"); 84 86 85 87 double[][] x = SquareMatrix(dm); -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/RunCollectionModifiers/PermutationConvexHullModifier.cs
r10133 r10139 66 66 while (sols.Count != 0) { 67 67 double[][] dm = CalculateDistanceMatrixFromPermutations(sols); 68 69 if (dim > dm.Length) 70 dim = dm.Length - 1; 71 68 72 double[][] popPoints = DistanceMatrixToPoints.MetricMDS(dm, dim); 69 73
Note: See TracChangeset
for help on using the changeset viewer.