Changeset 10198 for branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/ConvexHullTest.cs
- Timestamp:
- 12/05/13 15:23:48 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/ConvexHullTest.cs
r10081 r10198 74 74 for (int i = 0; i < data.Count(); i++) { 75 75 double[] d = data[i]; 76 for (int j = 0; j < d.Length; j++) { 77 78 vertex.Position = d.Select(x => x).ToArray();79 80 } 76 77 DefaultVertex vertex = new DefaultVertex(); 78 vertex.Position = d; 79 result.Add(vertex); 80 81 81 } 82 82 return result;
Note: See TracChangeset
for help on using the changeset viewer.