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/Evaluator/PushBenchmarkSuiteEvaluator.cs

    r15366 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator {
     1namespace HeuristicLab.Problems.ProgramSynthesis {
    22  using System;
    33  using System.Collections.Generic;
     
    1010  using HeuristicLab.Parameters;
    1111  using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    12   using HeuristicLab.Problems.ProgramSynthesis.Base.Extensions;
    13   using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
    14   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    15   using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter;
    16   using HeuristicLab.Problems.ProgramSynthesis.Push.Problem;
    17   using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
    1812
    1913  [StorableClass]
     
    4741    }
    4842
    49     public IValueParameter<ProblemData> DataParameter
    50     {
     43    public IValueParameter<ProblemData> DataParameter {
    5144      get { return (IValueParameter<ProblemData>)Parameters[DATA_PARAMETER_NAME]; }
    5245    }
    5346
    54     public ProblemData Data
    55     {
     47    public ProblemData Data {
    5648      get { return DataParameter.Value; }
    5749      set { DataParameter.Value = value; }
    5850    }
    5951
    60     public IValueParameter<DataBounds> DataBoundsParameter
    61     {
     52    public IValueParameter<DataBounds> DataBoundsParameter {
    6253      get { return (IValueParameter<DataBounds>)Parameters[DATA_BOUNDS_PARAMETER_NAME]; }
    6354    }
    6455
    65     public DataBounds DataBounds
    66     {
     56    public DataBounds DataBounds {
    6757      get { return DataBoundsParameter.Value; }
    6858      set { DataBoundsParameter.Value = value; }
Note: See TracChangeset for help on using the changeset viewer.