Last change
on this file since 13475 was
11865,
checked in by gkronber, 10 years ago
|
#2283: implemented royal tree problem and grid test for tree-based gp variants
|
File size:
525 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 that can also be used with tree-based GP in HeuristicLab
|
---|
9 | public interface ISymbolicExpressionTreeProblem : IProblem {
|
---|
10 | IGrammar TreeBasedGPGrammar { get; } // grammar for HL GP
|
---|
11 | string ConvertTreeToSentence(ISymbolicExpressionTree tree);
|
---|
12 | }
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.