Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/28/17 22:52:08 (7 years ago)
Author:
pkimmesw
Message:

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File:
1 edited

Legend:

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

    r14875 r14897  
    11namespace HeuristicLab.BenchmarkSuite.Problems {
    2   using HeuristicLab.Problems.ProgramSynthesis.Base.Erc;
     2  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Float;
     3  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;
    34
    45  public class NumberIO : BenchmarkSuiteDataDescriptor {
     
    2829        MaxSize = 200,
    2930        ErcOptions = {
    30           ErcProbability = 0.05,
    31           IntegerErcOptions = {
    32             IsEnabled = true,
    33             Start = -100,
    34             End = 100
    35           },
    36           FloatErcOptions = {
    37             IsEnabled = true,
    38             Start = -100.0,
    39             End = 100.0
    40           }
     31          ErcProbability = 0.01,
     32          IntegerErcOptions = new IntegerErcOptions(
     33            new IntegerRangeErcValue(-100, 100)),
     34          FloatErcOptions = new FloatErcOptions(
     35            new FloatRangeErcValue(-100, 100))
    4136        }
    4237      };
Note: See TracChangeset for help on using the changeset viewer.