Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2283 solution reorganization

File size: 697 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Diagnostics;
4using System.Linq;
5using System.Text;
6using System.Text.RegularExpressions;
7using HeuristicLab.Common;
8using HeuristicLab.Core;
9using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
10using HeuristicLab.Optimization;
11using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
12using HeuristicLab.PluginInfrastructure;
13
14namespace HeuristicLab.Problems.GrammaticalOptimization {
15  public interface IGrammaticalOptimizationEvaluator : ISingleObjectiveEvaluator, ISymbolicExpressionTreeOperator {
16    ILookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter { get; }
17  }
18}
Note: See TracBrowser for help on using the repository browser.