Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 1 added
- 7 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] -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/DataBounds.cs
r14834 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Push.Problem{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 using HeuristicLab.Common; 3 3 using HeuristicLab.Core; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/IntegerVectorPushProblem.cs
r15341 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem { 2 using System.Linq; 1 using System.Linq; 2 using HeuristicLab.Common; 3 using HeuristicLab.Encodings.IntegerVectorEncoding; 4 using HeuristicLab.Optimization; 5 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 3 6 4 using Common; 5 using Configuration; 6 using HeuristicLab.Encodings.IntegerVectorEncoding; 7 using HeuristicLab.Problems.ProgramSynthesis.Push.Analyzer; 8 using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator; 9 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions; 10 using HeuristicLab.Problems.ProgramSynthesis.Push.Individual; 11 using HeuristicLab.Problems.ProgramSynthesis.Push.SolutionCreator; 12 13 using Optimization; 14 using Persistence.Default.CompositeSerializers.Storable; 15 7 namespace HeuristicLab.Problems.ProgramSynthesis { 16 8 [StorableClass] 17 9 public abstract class IntegerVectorPushProblem : PushProblemBase<IntegerVectorEncoding> { -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PlushPushProblem.cs
r15341 r15771 1 namespace HeuristicLab.Problems.ProgramSynthesis .Push.Problem{1 namespace HeuristicLab.Problems.ProgramSynthesis { 2 2 using System.Diagnostics; 3 3 using System.Linq; … … 6 6 using HeuristicLab.Optimization; 7 7 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 8 using HeuristicLab.Problems.ProgramSynthesis.Push.Analyzer;9 using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding;10 using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator;11 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;12 8 13 9 [StorableClass] -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PushProblem.cs
r15334 r15771 5 5 using System.Threading.Tasks; 6 6 7 namespace HeuristicLab.Problems.ProgramSynthesis .Push.Problem7 namespace HeuristicLab.Problems.ProgramSynthesis { 8 8 { 9 9 public class PushProblem -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PushProblemBase.cs
r15334 r15771 1 1 using System; 2 2 using System.Linq; 3 using HeuristicLab.Common; 4 using HeuristicLab.Core; 5 using HeuristicLab.Data; 6 using HeuristicLab.Optimization; 7 using HeuristicLab.Parameters; 8 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 9 using HeuristicLab.Random; 3 10 4 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem { 5 using HeuristicLab.Common; 6 using HeuristicLab.Core; 7 using HeuristicLab.Data; 8 using HeuristicLab.Optimization; 9 using HeuristicLab.Parameters; 10 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 11 using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration; 12 using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator; 13 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions; 14 using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter; 15 using HeuristicLab.Problems.ProgramSynthesis.Push.ObjectPools.Random; 16 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution; 17 using HeuristicLab.Random; 18 11 namespace HeuristicLab.Problems.ProgramSynthesis { 19 12 [StorableClass] 20 13 public abstract class PushProblemBase<T> : SingleObjectiveBasicProblem<T> where T : class, IEncoding {
Note: See TracChangeset
for help on using the changeset viewer.