Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/17 11:33:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore
      •  

        old new  
        11*.user
         2packages
         3TestResults
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/StringDifferences.cs

    r15017 r15334  
    66    private const string name = "String Differences - Hard";
    77    private const string fileName = "StringDifferences.csv";
    8     private const string description = "Given 2 strings (without whitespace) as input, find the indices at which the strings have different characters, stopping at the end of the shorter one.For each such index, print a line containing the index as well as the character in each string. For example, if the strings are “dealer” and “dollars”, the program should print: 1 e o, 2 a l, 4 e a";
     8    private const string description = "Given 2 strings (without whitespace) as input, find the indices at which the strings have different characters, stopping at the end of the shorter one. For each such index, print a line containing the index as well as the character in each string. For example, if the strings are “dealer” and “dollars”, the program should print: 1 e o, 2 a l, 4 e a";
    99
    1010    protected override string FileName { get { return fileName; } }
     
    1818        Name = Name,
    1919        Description = Description,
     20        ProgramExecutionBudget = 60000000,
    2021        Examples = CloneExamples(),
    2122        BestResult = 0,
    22         WorstResult = 100,
     23        WorstResult = 5000,
    2324        InputArgumentTypes = new[] { ExampleArgumentType.String, ExampleArgumentType.String },
    2425        OutputArgumentTypes = new[] { ExampleArgumentType.Print },
Note: See TracChangeset for help on using the changeset viewer.