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

    r14875 r14897  
    11namespace HeuristicLab.BenchmarkSuite.Problems {
    2   using HeuristicLab.Problems.ProgramSynthesis.Base.Erc;
     2  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;
    33
    44  public class CountOdds : BenchmarkSuiteDataDescriptor {
     
    2929        ErcOptions = {
    3030          ErcProbability = 0.05,
    31           IntegerErcOptions = {
    32             IsEnabled = true,
    33             Constants = new [] { 0, 1, 2},
    34             Start = -1000,
    35             End = 1000
    36           }
     31          IntegerErcOptions = new IntegerErcOptions(
     32            new IntegerConstantErcValue(0, 1, 2),
     33            new IntegerRangeErcValue(-1000, 1000)),
    3734        }
    3835      };
Note: See TracChangeset for help on using the changeset viewer.