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

    r14875 r14897  
    11namespace HeuristicLab.BenchmarkSuite.Problems {
     2  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;
     3
    24  public class Smallest : BenchmarkSuiteDataDescriptor {
    35    private const string name = "Smallest";
     
    2729        ErcOptions = {
    2830          ErcProbability = 0.05,
    29           IntegerErcOptions = {
    30             IsEnabled = true,
    31             Start = -100,
    32             End = 100
    33           }
     31          IntegerErcOptions = new IntegerErcOptions(
     32            new IntegerRangeErcValue(-100, 100)),
    3433        }
    3534      };
Note: See TracChangeset for help on using the changeset viewer.