Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/13/13 01:08:08 (11 years ago)
Author:
ascheibe
Message:

#1886 fixed successor configuration and added successful mutation chart

File:
1 edited

Legend:

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

    r9054 r9150  
    126126
    127127
    128       worseParentCrossoverPerformancePlot = new ScatterPlotHelper(false, true);
    129       betterParentCrossoverPerformancePlot = new ScatterPlotHelper(false, true);
     128      worseParentCrossoverPerformancePlot = new ScatterPlotHelper(false, true, true);
     129      betterParentCrossoverPerformancePlot = new ScatterPlotHelper(false, true, true);
    130130      childDiversityToWorseParentHelper = new ScatterPlotHelper(false, true);
    131131      childDiversityToBetterParentHelper = new ScatterPlotHelper(false, true);
    132132      unwantedMutationsHelper = new ScatterPlotHelper(false, true);
    133133      parentDiversityHelper = new ScatterPlotHelper(false, true);
    134       parentQualityHelper = new ScatterPlotHelper(false, true);
     134      parentQualityHelper = new ScatterPlotHelper(false, true, true);
    135135      successHelper = new DataTableHelper();
    136136      equalParentsHelper = new DataTableHelper();
     
    239239
    240240          for (int i = 0; i < ComparisonFactorParameter.Value.Count; i++) {
    241             successHelper.AddPoint(SuccessfullCrossoversRowName + ComparisonFactorParameter.Value.ElementAt(i).Value.ToString(), success[i]);
     241            successHelper.AddPoint(SuccessfullCrossoversRowName + ComparisonFactorParameter.Value.ElementAt(i).Value.ToString(), (double)success[i] / (cnt - 1));
    242242          }
    243243
Note: See TracChangeset for help on using the changeset viewer.