Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Problems.GrammaticalOptimization/Interfaces/ISymbolicExpressionTreeProblem.cs @ 13475

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

#2283: implemented royal tree problem and grid test for tree-based gp variants

File size: 525 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
6
7namespace 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.