Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/WallisPi.cs

    r14897 r14952  
    44
    55  public class WallisPi : BenchmarkSuiteDataDescriptor {
    6     private const string name = "Wallis Pi";
     6    private const string name = "Wallis Pi - Hard";
    77    private const string fileName = "WallisPi.csv";
    88    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";
     
    3131          ErcProbability = 0.05,
    3232          FloatErcOptions = new FloatErcOptions(
    33             new FloatRangeErcValue(-500, 500)),
     33            new FloatRangeErc(-500, 500)),
    3434          IntegerErcOptions = new IntegerErcOptions(
    35             new IntegerRangeErcValue(-500, 500))
     35            new IntegerRangeErc(-500, 500))
    3636        }
    3737      };
Note: See TracChangeset for help on using the changeset viewer.