Last change
on this file since 12893 was
12893,
checked in by gkronber, 9 years ago
|
#2283: experiments on grammatical optimization algorithms (maxreward instead of avg reward, ...)
|
File size:
739 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.GrammaticalOptimization {
|
---|
8 | // represents a grammatical optimization problem
|
---|
9 | public interface IProblem {
|
---|
10 | string Name { get; }
|
---|
11 | double BestKnownQuality(int maxLen);
|
---|
12 | IGrammar Grammar { get; }
|
---|
13 | double Evaluate(string sentence);
|
---|
14 | bool IsOptimalPhrase(string phrase); // determines if the phrase can be derived to an optimal solution
|
---|
15 | string CanonicalRepresentation(string phrase); // canonical state must use correct syntax (must be a valid input for evaluate)
|
---|
16 | IEnumerable<Feature> GetFeatures(string phrase);
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.