Changeset 14907 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite
- Timestamp:
- 05/02/17 21:53:48 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Example.cs
r14897 r14907 16 16 private static readonly string[][] emptyStringVectors = new string[0][]; 17 17 18 public Example() { 19 InputArgs = emptyStrings; 20 OutputArgs = emptyStrings; 18 21 19 public Example() {20 22 InputInteger = emptyIntegers; 21 23 InputFloat = emptyFloats; -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/HeuristicLab.BenchmarkSuite.csproj
r14897 r14907 111 111 <Compile Include="Plugin.cs" /> 112 112 <Compile Include="Problems\CompareStringLengths.cs" /> 113 <Compile Include="Problem s\ProblemData.cs" />113 <Compile Include="ProblemData.cs" /> 114 114 <Compile Include="Example.cs" /> 115 115 <Compile Include="ExampleArgumentType.cs" /> -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Plugin.cs
r14897 r14907 31 31 [PluginDependency("HeuristicLab.Common", "3.3")] 32 32 [PluginDependency("HeuristicLab.Core", "3.3")] 33 [PluginDependency("HeuristicLab.Core.Views", "3.3")] 34 [PluginDependency("HeuristicLab.MainForm", "3.3")] 35 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 33 36 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 34 [PluginDependency("HeuristicLab. Random", "3.3")]35 public class P ushGpPlugin : PluginBase {37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 38 public class Plugin : PluginBase { 36 39 37 40 }
Note: See TracChangeset
for help on using the changeset viewer.