Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (8 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/CountOdds.cs

    r14897 r14952  
    33
    44  public class CountOdds : BenchmarkSuiteDataDescriptor {
    5     private const string name = "Count Odds";
     5    private const string name = "Count Odds - Hard";
    66    private const string fileName = "CountOdds.csv";
    77    private const string description = "Given a vector of integers, return the number of integers that are odd, without use of a specific even or odd instruction(but allowing instructions such as mod and quotient)";
     
    3030          ErcProbability = 0.05,
    3131          IntegerErcOptions = new IntegerErcOptions(
    32             new IntegerConstantErcValue(0, 1, 2),
    33             new IntegerRangeErcValue(-1000, 1000)),
     32            new IntegerConstantErc(0, 1, 2),
     33            new IntegerRangeErc(-1000, 1000)),
    3434        }
    3535      };
Note: See TracChangeset for help on using the changeset viewer.