Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/IGenericSymbExprEvaluator.cs @ 11857

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

#2283: solution reorg

File size: 392 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Optimization;
4
5namespace HeuristicLab.Problems.GrammaticalOptimization {
6  public interface IGenericSymbExprEvaluator : ISingleObjectiveEvaluator, ISymbolicExpressionTreeOperator {
7    ILookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter { get; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.