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

    r14897 r14952  
    44
    55  public class NegativeToZero : BenchmarkSuiteDataDescriptor {
    6     private const string name = "Negative to Zero";
     6    private const string name = "Negative to Zero - Medium";
    77    private const string fileName = "NegativeToZero.csv";
    88    private const string description = "Given a vector of integers, return the vector where all negative integers have been replaced by 0.";
     
    3131          ErcProbability = 0.05,
    3232          IntegerErcOptions = new IntegerErcOptions(
    33             new IntegerConstantErcValue(0)),
     33            new IntegerConstantErc(0)),
    3434          IntegerVectorErcOptions = new IntegerVectorErcOptions(
    35             new IntegerVectorConstantsErcValue(new int[0]))
     35            new IntegerVectorConstantsErc(new int[0]))
    3636        }
    3737      };
Note: See TracChangeset for help on using the changeset viewer.