Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 1 added
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/IntegerVectorPushBenchmarkSuiteProblem.cs
r15344 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem.BenchmarkSuite { 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 3 using HeuristicLab.BenchmarkSuite; 4 using HeuristicLab.BenchmarkSuite.Problems; 5 using HeuristicLab.Problems.Instances; 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 2 7 3 using Common; 4 using Configuration; 5 using Core; 6 7 using HeuristicLab.BenchmarkSuite; 8 using HeuristicLab.BenchmarkSuite.Problems; 9 using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator; 10 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions; 11 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution; 12 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution.BenchmarkSuite; 13 14 using Instances; 15 using Persistence.Default.CompositeSerializers.Storable; 16 using Stack; 17 8 namespace HeuristicLab.Problems.ProgramSynthesis { 18 9 [StorableClass] 19 10 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 180)] -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PlushPushBenchmarkSuiteProblem.cs
r15344 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Push.Problem.BenchmarkSuite{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 using HeuristicLab.BenchmarkSuite; 3 3 using HeuristicLab.BenchmarkSuite.Problems; … … 6 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 7 7 using HeuristicLab.Problems.Instances; 8 using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;9 using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator;10 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;11 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution;12 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution.BenchmarkSuite;13 using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;14 8 15 9 [StorableClass]
Note: See TracChangeset
for help on using the changeset viewer.