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
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Problems.GrammaticalOptimization {
7  public interface IProblem {
8    double BestKnownQuality(int maxLen);
9    IGrammar Grammar { get; }
10    double Evaluate(string sentence);
11    string Hash(string terminalPhrase);
12  }
13}
Note: See TracBrowser for help on using the repository browser.