Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 2 added
- 27 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Checksum.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 1 using HeuristicLab.Problems.ProgramSynthesis; 5 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 6 4 public class Checksum : BenchmarkSuiteDataDescriptor { 7 5 private const string name = "Checksum - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/CollatzNumbers.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class CollatzNumbers : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Collatz Numbers - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/CompareStringLengths.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Boolean; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class CompareStringLengths : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Compare String Lengths - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/CountOdds.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class CountOdds : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Count Odds - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Digits.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class Digits : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Digits - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/DoubleLetters.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class DoubleLetters : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Double Letters - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Grades.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems {2 using System;1 using System; 2 using HeuristicLab.Problems.ProgramSynthesis; 3 3 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 5 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 6 4 namespace HeuristicLab.BenchmarkSuite.Problems { 7 5 public class Grades : BenchmarkSuiteDataDescriptor { 8 6 private const string name = "Grades - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/LastIndexOfZero.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class LastIndexOfZero : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Last Index of Zero - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Median.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class Median : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Median - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/MedianIntegerError.cs
r15345 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class MedianIntegerError : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Median Integer Error - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/MirrorImage.cs
r15366 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Boolean; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class MirrorImage : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Mirror Image - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/NegativeToZero.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.IntegerVector; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class NegativeToZero : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Negative to Zero - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/NumberIo.cs
r15344 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems {2 using System;3 using System.Globalization;1 using System; 2 using System.Globalization; 3 using HeuristicLab.Problems.ProgramSynthesis; 4 4 5 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Float; 6 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 7 5 namespace HeuristicLab.BenchmarkSuite.Problems { 8 6 public class NumberIO : BenchmarkSuiteDataDescriptor { 9 7 private const string name = "NumberIO - Easy"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/PigLatin.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 1 using HeuristicLab.Problems.ProgramSynthesis; 5 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 6 4 public class PigLatin : BenchmarkSuiteDataDescriptor { 7 5 private const string name = "Pig Latin - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/ReplaceSpaceWithNewline.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 1 using HeuristicLab.Problems.ProgramSynthesis; 5 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 6 4 public class ReplaceSpaceWithNewline : BenchmarkSuiteDataDescriptor { 7 5 private const string name = "Replace Space with Newline - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/ScrabbleScore.cs
r15341 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.IntegerVector; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class ScrabbleScore : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Scrabble Score - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/SmallOrLarge.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class SmallOrLarge : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Small or Large - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Smallest.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class Smallest : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Smallest - Easy"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/StringDifferences.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class StringDifferences : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "String Differences - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/StringLengthsBackwards.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class StringLengthsBackwards : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "String Length Backwards - Medium"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/SumOfSquares.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 3 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 4 4 public class SumOfSquares : BenchmarkSuiteDataDescriptor { 5 5 private const string name = "Sum of Squares - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/SuperAnagrams.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Boolean; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 5 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 6 4 public class SuperAnagrams : BenchmarkSuiteDataDescriptor { 7 5 private const string name = "Super Anagrams - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/Syllables.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems {2 1 using HeuristicLab.Problems.ProgramSynthesis; 2 using System; 3 3 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 5 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 6 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 7 4 namespace HeuristicLab.BenchmarkSuite.Problems { 8 5 public class Syllables : BenchmarkSuiteDataDescriptor { 9 6 private const string name = "Syllables - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/VectorSummed.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.IntegerVector; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class VectorSummed : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Vector Summed - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/WallisPi.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Float; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 1 using HeuristicLab.Problems.ProgramSynthesis; 4 2 3 namespace HeuristicLab.BenchmarkSuite.Problems { 5 4 public class WallisPi : BenchmarkSuiteDataDescriptor { 6 5 private const string name = "Wallis Pi - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/WordStats.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems {2 using System;3 using System.Linq;1 using System; 2 using System.Linq; 3 using HeuristicLab.Problems.ProgramSynthesis; 4 4 5 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 6 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 7 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.IntegerVector; 8 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String; 9 5 namespace HeuristicLab.BenchmarkSuite.Problems { 10 6 public class WordStats : BenchmarkSuiteDataDescriptor { 11 7 private const string name = "Word Stats - Hard"; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/BenchmarkSuite/Problems/XWordLines.cs
r15334 r15771 1 namespace HeuristicLab.BenchmarkSuite.Problems {2 using System.Linq;1 using System.Linq; 2 using HeuristicLab.Problems.ProgramSynthesis; 3 3 4 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 5 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 4 namespace HeuristicLab.BenchmarkSuite.Problems { 6 5 7 6 public class XWordLines : BenchmarkSuiteDataDescriptor {
Note: See TracChangeset
for help on using the changeset viewer.