- Timestamp:
- 05/02/17 21:53:48 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Plugin.cs
r14897 r14907 43 43 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 44 44 [PluginDependency("HeuristicLab.Random", "3.3")] 45 [PluginDependency("HeuristicLab.Selection", "3.3")] 45 46 46 public class P ushGpPlugin : PluginBase {47 public class Plugin : PluginBase { 47 48 48 49 } -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteEvaluator.cs
r14897 r14907 5 5 using Core; 6 6 using Expressions; 7 8 using HeuristicLab.BenchmarkSuite; 7 9 using HeuristicLab.BenchmarkSuite.Problems; 8 10 using HeuristicLab.Parameters; -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteProblem.cs
r14905 r14907 4 4 using Core; 5 5 using Encodings.IntegerVectorEncoding; 6 7 using HeuristicLab.BenchmarkSuite; 6 8 using HeuristicLab.BenchmarkSuite.Problems; 7 9 using Instances; … … 23 25 } 24 26 25 protected PushBenchmarkSuiteProblem(Push Problem original, Cloner cloner)27 protected PushBenchmarkSuiteProblem(PushBenchmarkSuiteProblem original, Cloner cloner) 26 28 : base(original, cloner) { 27 29 }
Note: See TracChangeset
for help on using the changeset viewer.