Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/TreeRepresentation/ISymbolicExpressionTreeProblem.cs @ 11848

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

#2283 solution reorganization

File size: 552 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    ISymbolicExpressionGrammar SymbolicExpressionGrammar { get; } // grammar for HL GP
11
12    string ConvertTreeToSentence(ISymbolicExpressionTree tree);
13  }
14}
Note: See TracBrowser for help on using the repository browser.