Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/20/17 11:39:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added PlushEncoding, ZeroErrorDistributionAnalzer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Analyzer/IndividualZeroErrorAnalyzer.cs

    r15273 r15275  
    2222    private const string RESULT_PARAMETER_NAME = "Zero Error Individuals Per Case";
    2323    private const string RESULT_PARAMETER_DESCRIPTION = "Relative frequency of instructions aggregated over the whole population.";
    24     private const string Y_AXIS_TITLE = "Count if zero error individuals";
     24    private const string Y_AXIS_TITLE = "Count of zero error individuals";
    2525    private const string X_AXIS_TITLE = "Case Index";
    2626    private const string ROW_NAME = "Cases";
     
    3636
    3737      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>(
    38        PushProblem.CaseQualitiesScopeParameterName,
     38       IntegerVectorPushProblem.CaseQualitiesScopeParameterName,
    3939       "The quality of every single training case for each individual."));
    4040    }
     
    6363    public ILookupParameter<ItemArray<DoubleArray>> CaseQualitiesParameter
    6464    {
    65       get { return (ILookupParameter<ItemArray<DoubleArray>>)Parameters[PushProblem.CaseQualitiesScopeParameterName]; }
     65      get { return (ILookupParameter<ItemArray<DoubleArray>>)Parameters[IntegerVectorPushProblem.CaseQualitiesScopeParameterName]; }
    6666    }
    6767
Note: See TracChangeset for help on using the changeset viewer.