Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/18 16:56:35 (6 years ago)
Author:
bburlacu
Message:

#2895: Add solution skeleton for PushGP with genealogy analysis.

Location:
branches/2895_PushGP_GenealogyAnalysis
Files:
1 added
1 edited
1 copied

Legend:

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

    r15334 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Analyzer {
     1namespace HeuristicLab.Problems.ProgramSynthesis {
    22
    33  using HeuristicLab.Analysis;
     
    99  using HeuristicLab.Parameters;
    1010  using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    11   using HeuristicLab.Problems.ProgramSynthesis.Push.Problem;
    1211
    1312  /// <summary>
     
    7776    public bool EnabledByDefault { get { return true; } }
    7877
    79     public ValueParameter<BoolValue> StoreHistoryParameter
    80     {
     78    public ValueParameter<BoolValue> StoreHistoryParameter {
    8179      get { return (ValueParameter<BoolValue>)Parameters["StoreHistory"]; }
    8280    }
    83     public ValueParameter<IntValue> UpdateIntervalParameter
    84     {
     81    public ValueParameter<IntValue> UpdateIntervalParameter {
    8582      get { return (ValueParameter<IntValue>)Parameters["UpdateInterval"]; }
    8683    }
    87     public ValueParameter<IntValue> UpdateCounterParameter
    88     {
     84    public ValueParameter<IntValue> UpdateCounterParameter {
    8985      get { return (ValueParameter<IntValue>)Parameters["UpdateCounter"]; }
    9086    }
    9187
    92     public ILookupParameter<DataTable> IndividualZeroErrorParameter
    93     {
     88    public ILookupParameter<DataTable> IndividualZeroErrorParameter {
    9489      get { return (ILookupParameter<DataTable>)Parameters[INDIVIDUAL_ZERO_ERROR_PARAMETER_NAME]; }
    9590    }
    9691
    97     public ValueLookupParameter<DataTableHistory> IndividualZeroErrorHistoryParameter
    98     {
     92    public ValueLookupParameter<DataTableHistory> IndividualZeroErrorHistoryParameter {
    9993      get { return (ValueLookupParameter<DataTableHistory>)Parameters[INDIVIDUAL_ZERO_ERROR_HISTORY_PARAMETER_NAME]; }
    10094    }
    10195
    102     public ILookupParameter<ResultCollection> ResultsParameter
    103     {
     96    public ILookupParameter<ResultCollection> ResultsParameter {
    10497      get { return (ILookupParameter<ResultCollection>)Parameters[RESULTS_PARAMETER_NAME]; }
    10598    }
    10699
    107     public ILookupParameter<ItemArray<DoubleArray>> CaseQualitiesParameter
    108     {
     100    public ILookupParameter<ItemArray<DoubleArray>> CaseQualitiesParameter {
    109101      get { return (ILookupParameter<ItemArray<DoubleArray>>)Parameters[IntegerVectorPushProblem.CaseQualitiesScopeParameterName]; }
    110102    }
Note: See TracChangeset for help on using the changeset viewer.