Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/13/13 10:56:46 (11 years ago)
Author:
ascheibe
Message:

#1886 updated the PermutationConvexHullModifier to collect the same results as the RealVectorConvexHullModifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/RunCollectionModifiers/RealVectorConvexHullModifier.cs

    r10119 r10133  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
    25 using System.Text;
    2624using HeuristicLab.Analysis.SolutionCaching.RealVectorEncoding;
    2725using HeuristicLab.Common;
     
    5351        if (solutionCache == null) continue;
    5452
    55         var sols = solutionCache.GetSolutionsFromGeneration(i);
    5653        DataTable volDataTable = new DataTable("Convex hull volume over generations");
    5754        DataTable nrOfPointsTable = new DataTable("Nr. of points of convex hull");
     
    6461
    6562        List<double[]> curHull = null;
    66 
     63        var sols = solutionCache.GetSolutionsFromGeneration(i);
    6764        while (sols.Count != 0) {
    6865          var input = sols.Select(x => ConvertRealVectorToVertexArray(x)).ToArray();
Note: See TracChangeset for help on using the changeset viewer.