Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/IProblem.cs @ 11732

Last change on this file since 11732 was 11732, checked in by gkronber, 9 years ago

#2283: refactoring and bug fixes

File size: 346 bytes
RevLine 
[11659]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Problems.GrammaticalOptimization {
7  public interface IProblem {
[11732]8    double BestKnownQuality(int maxLen);
[11659]9    IGrammar Grammar { get; }
10    double Evaluate(string sentence);
[11727]11    string Hash(string terminalPhrase);
[11659]12  }
13}
Note: See TracBrowser for help on using the repository browser.