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

    r14909 r14952  
    44
    55  public class ScrabbleScore : BenchmarkSuiteDataDescriptor {
    6     private const string name = "Scrabble Score";
     6    private const string name = "Scrabble Score - Hard";
    77    private const string fileName = "ScrabbleScore.csv";
    88    private const string description = "Given a string of visible ASCII characters, return the Scrabble score for that string. Each letter has a corresponding value according to normal Scrabble rules, and non-letter characters are worth zero.";
     
    6161          ErcProbability = 0.05,
    6262          IntegerErcOptions = new IntegerErcOptions(
    63             new IntegerConstantErcValue(ScrabbleValues)),
     63            new IntegerConstantErc(ScrabbleValues)),
    6464          IntegerVectorErcOptions = new IntegerVectorErcOptions(
    65             new IntegerVectorConstantsErcValue(ScrabbleValues))
     65            new IntegerVectorConstantsErc(ScrabbleValues))
    6666        }
    6767      };
Note: See TracChangeset for help on using the changeset viewer.