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

    r14897 r14952  
    33
    44  public class LastIndexOfZero : BenchmarkSuiteDataDescriptor {
    5     private const string name = "Last Index of Zero";
     5    private const string name = "Last Index of Zero - Hard";
    66    private const string fileName = "LastIndexOfZero.csv";
    77    private const string description = "Given a vector of integers, at least one of which is 0, return the index of the last occurrence of 0 in the vector.";
     
    3030          ErcProbability = 0.05,
    3131          IntegerErcOptions = new IntegerErcOptions(
    32             new IntegerConstantErcValue(0),
    33             new IntegerRangeErcValue(-50, 50))
     32            new IntegerConstantErc(0),
     33            new IntegerRangeErc(-50, 50))
    3434          }
    3535      };
Note: See TracChangeset for help on using the changeset viewer.