Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/15 16:37:14 (9 years ago)
Author:
aballeit
Message:

#2283 added SelectionIndicator for MCTS and problems SantaFeAnt, SymbolicRegression10, RoyalSymbol; updated SantaFeAnt grammar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/Interfaces/ISymbolicExpressionTreeProblem.cs

    r11865 r12815  
    55using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    66
    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   }
     7namespace HeuristicLab.Problems.GrammaticalOptimization
     8{
     9    // represents a grammatical optimization problem that can also be used with tree-based GP in HeuristicLab
     10    public interface ISymbolicExpressionTreeProblem : IProblem
     11    {
     12        IGrammar TreeBasedGPGrammar { get; } // grammar for HL GP
     13        string ConvertTreeToSentence(ISymbolicExpressionTree tree);
     14        void GenerateProblemSolutions(int maxLen);
     15        bool IsParentOfProblemSolution(string sentence, int maxLen);
     16    }
    1317}
Note: See TracChangeset for help on using the changeset viewer.