Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces/ISymbolicDataAnalysisProblem.cs @ 17226

Last change on this file since 17226 was 17226, checked in by mkommend, 5 years ago

#2521: Merged trunk changes into problem refactoring branch.

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
25using HeuristicLab.Optimization;
26using HEAL.Attic;
27
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
29  [StorableType("17dc51c4-499c-49dc-b3ac-72364358f7e7")]
30  public interface ISymbolicDataAnalysisProblem : IDataAnalysisProblem, IHeuristicOptimizationProblem {
31    IValueParameter<ISymbolicDataAnalysisGrammar> SymbolicExpressionTreeGrammarParameter { get; }
32    IValueParameter<ISymbolicDataAnalysisExpressionTreeInterpreter> SymbolicExpressionTreeInterpreterParameter { get; }
33    IFixedValueParameter<IntValue> MaximumSymbolicExpressionTreeDepthParameter { get; }
34    IFixedValueParameter<IntValue> MaximumSymbolicExpressionTreeLengthParameter { get; }
35    IFixedValueParameter<IntValue> MaximumFunctionDefinitionsParameter { get; }
36    IFixedValueParameter<IntValue> MaximumFunctionArgumentsParameter { get; }
37    IFixedValueParameter<PercentValue> RelativeNumberOfEvaluatedSamplesParameter { get; }
38    IFixedValueParameter<IntRange> FitnessCalculationPartitionParameter { get; }
39    IFixedValueParameter<IntRange> ValidationPartitionParameter { get; }
40
41    ISymbolicDataAnalysisGrammar SymbolicExpressionTreeGrammar { get; set; }
42    ISymbolicDataAnalysisExpressionTreeInterpreter SymbolicExpressionTreeInterpreter { get; set; }
43    IntValue MaximumSymbolicExpressionTreeDepth { get; }
44    IntValue MaximumSymbolicExpressionTreeLength { get; }
45    IntValue MaximumFunctionDefinitions { get; }
46    IntValue MaximumFunctionArguments { get; }
47    PercentValue RelativeNumberOfEvaluatedSamples { get; }
48    IntRange FitnessCalculationPartition { get; }
49    IntRange ValidationPartition { get; }
50  }
51
52  [StorableType("07b08ca0-40cb-433e-8aed-72df06a87d62")]
53  public interface ISymbolicDataAnalysisSingleObjectiveProblem : ISymbolicDataAnalysisProblem, ISingleObjectiveProblem<SymbolicExpressionTreeEncoding, ISymbolicExpressionTree> { }
54  [StorableType("1c5a0cf4-1286-45d8-b126-a6f5ddccf7bf")]
55  public interface ISymbolicDataAnalysisMultiObjectiveProblem : ISymbolicDataAnalysisProblem, IMultiObjectiveProblem<SymbolicExpressionTreeEncoding, ISymbolicExpressionTree> { }
56}
Note: See TracBrowser for help on using the repository browser.