Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/WallisPi.cs
- Timestamp:
- 05/10/17 11:23:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/WallisPi.cs
r14897 r14952 4 4 5 5 public class WallisPi : BenchmarkSuiteDataDescriptor { 6 private const string name = "Wallis Pi ";6 private const string name = "Wallis Pi - Hard"; 7 7 private const string fileName = "WallisPi.csv"; 8 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"; … … 31 31 ErcProbability = 0.05, 32 32 FloatErcOptions = new FloatErcOptions( 33 new FloatRangeErc Value(-500, 500)),33 new FloatRangeErc(-500, 500)), 34 34 IntegerErcOptions = new IntegerErcOptions( 35 new IntegerRangeErc Value(-500, 500))35 new IntegerRangeErc(-500, 500)) 36 36 } 37 37 };
Note: See TracChangeset
for help on using the changeset viewer.