Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/RoyalTreeProblem.cs @ 11793

Last change on this file since 11793 was 11793, checked in by gkronber, 10 years ago

#2283 fixed compile errors and refactoring

File size: 1016 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Problems.GrammaticalOptimization {
7  public class RoyalTreeProblem : IProblem {
8    // Punch: "How Effective Are Multiple Populations in Genetic Programming", 1998
9    private const string grammarString = @"
10G(S):
11S -> 0
12";
13
14    private readonly IGrammar grammar;
15    public RoyalTreeProblem() {
16      this.grammar = new Grammar(grammarString);
17    }
18
19    public double BestKnownQuality(int maxLen) {
20      // for now only an upper bound is returned, ideally all fitness cases are predicted correctly
21      throw new NotImplementedException();
22    }
23
24    public IGrammar Grammar {
25      get { return grammar; }
26    }
27
28    public double Evaluate(string sentence) {
29      throw new NotImplementedException();
30    }
31    public string CanonicalRepresentation(string terminalPhrase) {
32      throw new NotImplementedException();
33      return terminalPhrase;
34    }
35
36  }
37}
Note: See TracBrowser for help on using the repository browser.