Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/10/13 09:48:22 (11 years ago)
Author:
epitzer
Message:

#1696 enable information analysis on very short walks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/InformationAnalyzer.cs

    r8744 r9142  
    1919 */
    2020#endregion
     21
     22using System;
    2123using System.Linq;
    2224using HeuristicLab.Analysis.FitnessLandscape.DataTables;
     
    178180      int shapeSize = ShapeSizeParameter.ActualValue.Value;
    179181      var qualities = QualityTrailParameter.ActualValue.Rows.First().Values.ToList();
    180       if (qualities.Count > nQuantiles) {
     182      if (qualities.Count > 2) {
    181183        InformationAnalysisTable informationTable = InformationParameter.ActualValue;
    182184        var informationContent = informationTable.Rows["Information Content"].Values;
Note: See TracChangeset for help on using the changeset viewer.