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/WallisPi.cs

    r15017 r15334  
    66    private const string name = "Wallis Pi - Hard";
    77    private const string fileName = "WallisPi.csv";
    8     private const string description = " John Wallis gave a infinite product that converges to π/4. Given an integer input n, compute an approximation of this product out to n terms.Results are rounded to 5 decimal place";
     8    private const string description = " John Wallis gave a infinite product that converges to π/4. Given an integer input n, compute an approximation of this product out to n terms. Results are rounded to 5 decimal places.";
    99
    1010    protected override string FileName { get { return fileName; } }
     
    1818        Name = Name,
    1919        Description = Description,
     20        ProgramExecutionBudget = 45000000,
    2021        Examples = CloneExamples(),
    2122        BestResult = 0,
    22         WorstResult = 1,
     23        WorstResult = 1000000,
    2324        InputArgumentTypes = new[] { ExampleArgumentType.Integer },
    2425        OutputArgumentTypes = new[] { ExampleArgumentType.Float },
     
    2829        MaxSize = 600,
    2930        EvalLimit = 8000,
     31        FloatStringFormat = "N5",
    3032        ErcOptions = {
    3133          ErcProbability = 0.05,
Note: See TracChangeset for help on using the changeset viewer.