Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteProblem.cs
- Timestamp:
- 05/10/17 11:23:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteProblem.cs
r14907 r14952 3 3 using Configuration; 4 4 using Core; 5 using Encodings.IntegerVectorEncoding;6 5 7 6 using HeuristicLab.BenchmarkSuite; 8 using HeuristicLab.BenchmarkSuite.Problems; 7 using HeuristicLab.Encodings.IntegerVectorEncoding; 8 9 9 using Instances; 10 10 using Persistence.Default.CompositeSerializers.Storable; … … 13 13 [StorableClass] 14 14 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 180)] 15 [Item("Push BenchmarkSuiteProblem", "")]15 [Item("Push Problem", "")] 16 16 public class PushBenchmarkSuiteProblem : PushProblem, IProblemInstanceConsumer<ProblemData> { 17 17 public PushBenchmarkSuiteProblem() : base(new PushBenchmarkSuiteEvaluator()) { … … 43 43 EvalPushLimit = data.EvalLimit; 44 44 ErcOptions = data.ErcOptions; 45 Name = "Push Problem: " + data.Name; 46 Description = data.Description; 45 47 46 48 config.SetEnabledStacks((StackTypes)data.EnabledDataTypes);
Note: See TracChangeset
for help on using the changeset viewer.