Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (8 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteProblem.cs

    r14907 r14952  
    33  using Configuration;
    44  using Core;
    5   using Encodings.IntegerVectorEncoding;
    65
    76  using HeuristicLab.BenchmarkSuite;
    8   using HeuristicLab.BenchmarkSuite.Problems;
     7  using HeuristicLab.Encodings.IntegerVectorEncoding;
     8
    99  using Instances;
    1010  using Persistence.Default.CompositeSerializers.Storable;
     
    1313  [StorableClass]
    1414  [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 180)]
    15   [Item("Push BenchmarkSuite Problem", "")]
     15  [Item("Push Problem", "")]
    1616  public class PushBenchmarkSuiteProblem : PushProblem, IProblemInstanceConsumer<ProblemData> {
    1717    public PushBenchmarkSuiteProblem() : base(new PushBenchmarkSuiteEvaluator()) {
     
    4343      EvalPushLimit = data.EvalLimit;
    4444      ErcOptions = data.ErcOptions;
     45      Name = "Push Problem: " + data.Name;
     46      Description = data.Description;
    4547
    4648      config.SetEnabledStacks((StackTypes)data.EnabledDataTypes);
Note: See TracChangeset for help on using the changeset viewer.