Changeset 10133 for branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/RunCollectionModifiers/RealVectorConvexHullModifier.cs
- Timestamp:
- 11/13/13 10:56:46 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/RunCollectionModifiers/RealVectorConvexHullModifier.cs
r10119 r10133 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.Linq; 25 using System.Text;26 24 using HeuristicLab.Analysis.SolutionCaching.RealVectorEncoding; 27 25 using HeuristicLab.Common; … … 53 51 if (solutionCache == null) continue; 54 52 55 var sols = solutionCache.GetSolutionsFromGeneration(i);56 53 DataTable volDataTable = new DataTable("Convex hull volume over generations"); 57 54 DataTable nrOfPointsTable = new DataTable("Nr. of points of convex hull"); … … 64 61 65 62 List<double[]> curHull = null; 66 63 var sols = solutionCache.GetSolutionsFromGeneration(i); 67 64 while (sols.Count != 0) { 68 65 var input = sols.Select(x => ConvertRealVectorToVertexArray(x)).ToArray();
Note: See TracChangeset
for help on using the changeset viewer.