[5883] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5883] | 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 |
|
---|
| 22 | using HeuristicLab.Core;
|
---|
| 23 | using HeuristicLab.Data;
|
---|
[9049] | 24 | using HeuristicLab.Optimization;
|
---|
[16565] | 25 | using HEAL.Attic;
|
---|
[5883] | 26 |
|
---|
| 27 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[16565] | 28 | [StorableType("17dc51c4-499c-49dc-b3ac-72364358f7e7")]
|
---|
[9049] | 29 | public interface ISymbolicDataAnalysisProblem : IDataAnalysisProblem, IHeuristicOptimizationProblem {
|
---|
[5883] | 30 | IValueParameter<ISymbolicDataAnalysisGrammar> SymbolicExpressionTreeGrammarParameter { get; }
|
---|
| 31 | IValueParameter<ISymbolicDataAnalysisExpressionTreeInterpreter> SymbolicExpressionTreeInterpreterParameter { get; }
|
---|
| 32 | IFixedValueParameter<IntValue> MaximumSymbolicExpressionTreeDepthParameter { get; }
|
---|
| 33 | IFixedValueParameter<IntValue> MaximumSymbolicExpressionTreeLengthParameter { get; }
|
---|
| 34 | IFixedValueParameter<IntValue> MaximumFunctionDefinitionsParameter { get; }
|
---|
| 35 | IFixedValueParameter<IntValue> MaximumFunctionArgumentsParameter { get; }
|
---|
| 36 | IFixedValueParameter<PercentValue> RelativeNumberOfEvaluatedSamplesParameter { get; }
|
---|
| 37 | IFixedValueParameter<IntRange> FitnessCalculationPartitionParameter { get; }
|
---|
| 38 | IFixedValueParameter<IntRange> ValidationPartitionParameter { get; }
|
---|
| 39 |
|
---|
| 40 | ISymbolicDataAnalysisGrammar SymbolicExpressionTreeGrammar { get; set; }
|
---|
| 41 | ISymbolicDataAnalysisExpressionTreeInterpreter SymbolicExpressionTreeInterpreter { get; set; }
|
---|
| 42 | IntValue MaximumSymbolicExpressionTreeDepth { get; }
|
---|
| 43 | IntValue MaximumSymbolicExpressionTreeLength { get; }
|
---|
| 44 | IntValue MaximumFunctionDefinitions { get; }
|
---|
| 45 | IntValue MaximumFunctionArguments { get; }
|
---|
| 46 | PercentValue RelativeNumberOfEvaluatedSamples { get; }
|
---|
| 47 | IntRange FitnessCalculationPartition { get; }
|
---|
| 48 | IntRange ValidationPartition { get; }
|
---|
| 49 | }
|
---|
[9049] | 50 |
|
---|
[16565] | 51 | [StorableType("07b08ca0-40cb-433e-8aed-72df06a87d62")]
|
---|
[9049] | 52 | public interface ISymbolicDataAnalysisSingleObjectiveProblem : ISymbolicDataAnalysisProblem, ISingleObjectiveHeuristicOptimizationProblem { }
|
---|
[16565] | 53 |
|
---|
| 54 | [StorableType("1c5a0cf4-1286-45d8-b126-a6f5ddccf7bf")]
|
---|
[9049] | 55 | public interface ISymbolicDataAnalysisMultiObjectiveProblem : ISymbolicDataAnalysisProblem, IMultiObjectiveHeuristicOptimizationProblem { }
|
---|
[5883] | 56 | }
|
---|