Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Grammars/TypeCoherentExpressionGrammar.cs @ 11009

Last change on this file since 11009 was 11009, checked in by pfleck, 10 years ago
  • Merged trunk into preprocessing branch.
File size: 12.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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 System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
29  [StorableClass]
30  [Item("TypeCoherentExpressionGrammar", "Represents a grammar for functional expressions in which special syntactic constraints are enforced so that boolean and real-valued expressions are not mixed.")]
31  public class TypeCoherentExpressionGrammar : SymbolicExpressionGrammar, ISymbolicDataAnalysisGrammar {
32    private const string ArithmeticFunctionsName = "Arithmetic Functions";
33    private const string TrigonometricFunctionsName = "Trigonometric Functions";
34    private const string ExponentialFunctionsName = "Exponential and Logarithmic Functions";
35    private const string RealValuedSymbolsName = "Real Valued Symbols";
36    private const string TerminalsName = "Terminals";
37    private const string PowerFunctionsName = "Power Functions";
38    private const string ConditionsName = "Conditions";
39    private const string ComparisonsName = "Comparisons";
40    private const string BooleanOperatorsName = "Boolean Operators";
41    private const string ConditionalSymbolsName = "ConditionalSymbols";
42    private const string SpecialFunctionsName = "Special Functions";
43    private const string TimeSeriesSymbolsName = "Time Series Symbols";
44
45    [StorableConstructor]
46    protected TypeCoherentExpressionGrammar(bool deserializing) : base(deserializing) { }
47    protected TypeCoherentExpressionGrammar(TypeCoherentExpressionGrammar original, Cloner cloner) : base(original, cloner) { }
48    public TypeCoherentExpressionGrammar()
49      : base(ItemAttribute.GetName(typeof(TypeCoherentExpressionGrammar)), ItemAttribute.GetDescription(typeof(TypeCoherentExpressionGrammar))) {
50      Initialize();
51    }
52    public override IDeepCloneable Clone(Cloner cloner) {
53      return new TypeCoherentExpressionGrammar(this, cloner);
54    }
55
56    private void Initialize() {
57      #region symbol declaration
58      var add = new Addition();
59      var sub = new Subtraction();
60      var mul = new Multiplication();
61      var div = new Division();
62      var mean = new Average();
63      var sin = new Sine();
64      var cos = new Cosine();
65      var tan = new Tangent();
66      var log = new Logarithm();
67      var pow = new Power();
68      var square = new Square();
69      var root = new Root();
70      var sqrt = new SquareRoot();
71      var exp = new Exponential();
72
73      var airyA = new AiryA();
74      var airyB = new AiryB();
75      var bessel = new Bessel();
76      var cosineIntegral = new CosineIntegral();
77      var dawson = new Dawson();
78      var erf = new Erf();
79      var expIntegralEi = new ExponentialIntegralEi();
80      var fresnelCosineIntegral = new FresnelCosineIntegral();
81      var fresnelSineIntegral = new FresnelSineIntegral();
82      var gamma = new Gamma();
83      var hypCosineIntegral = new HyperbolicCosineIntegral();
84      var hypSineIntegral = new HyperbolicSineIntegral();
85      var norm = new Norm();
86      var psi = new Psi();
87      var sineIntegral = new SineIntegral();
88
89      var @if = new IfThenElse();
90      var gt = new GreaterThan();
91      var lt = new LessThan();
92      var and = new And();
93      var or = new Or();
94      var not = new Not();
95      var xor = new Xor();
96      var variableCondition = new VariableCondition();
97
98      var timeLag = new TimeLag();
99      var integral = new Integral();
100      var derivative = new Derivative();
101
102      var constant = new Constant();
103      constant.MinValue = -20;
104      constant.MaxValue = 20;
105      var variableSymbol = new Variable();
106      var laggedVariable = new LaggedVariable();
107      var autoregressiveVariable = new AutoregressiveTargetVariable();
108      #endregion
109
110      #region group symbol declaration
111      var arithmeticSymbols = new GroupSymbol(ArithmeticFunctionsName, new List<ISymbol>() { add, sub, mul, div, mean });
112      var trigonometricSymbols = new GroupSymbol(TrigonometricFunctionsName, new List<ISymbol>() { sin, cos, tan });
113      var exponentialAndLogarithmicSymbols = new GroupSymbol(ExponentialFunctionsName, new List<ISymbol> { exp, log });
114      var specialFunctions = new GroupSymbol(SpecialFunctionsName, new List<ISymbol> { airyA, airyB, bessel, cosineIntegral, dawson, erf, expIntegralEi,
115        fresnelCosineIntegral,fresnelSineIntegral,gamma,hypCosineIntegral,hypSineIntegral,norm, psi, sineIntegral});
116      var terminalSymbols = new GroupSymbol(TerminalsName, new List<ISymbol> { constant, variableSymbol });
117      var realValuedSymbols = new GroupSymbol(RealValuedSymbolsName, new List<ISymbol>() { arithmeticSymbols, trigonometricSymbols, exponentialAndLogarithmicSymbols, specialFunctions, terminalSymbols });
118
119      var powerSymbols = new GroupSymbol(PowerFunctionsName, new List<ISymbol> { square, pow, sqrt, root });
120
121      var conditionSymbols = new GroupSymbol(ConditionsName, new List<ISymbol> { @if, variableCondition });
122      var comparisonSymbols = new GroupSymbol(ComparisonsName, new List<ISymbol> { gt, lt });
123      var booleanOperationSymbols = new GroupSymbol(BooleanOperatorsName, new List<ISymbol> { and, or, not, xor });
124      var conditionalSymbols = new GroupSymbol(ConditionalSymbolsName, new List<ISymbol> { conditionSymbols, comparisonSymbols, booleanOperationSymbols });
125
126      var timeSeriesSymbols = new GroupSymbol(TimeSeriesSymbolsName, new List<ISymbol> { timeLag, integral, derivative, laggedVariable, autoregressiveVariable });
127      #endregion
128
129      AddSymbol(realValuedSymbols);
130      AddSymbol(powerSymbols);
131      AddSymbol(conditionalSymbols);
132      AddSymbol(timeSeriesSymbols);
133
134      #region subtree count configuration
135      SetSubtreeCount(arithmeticSymbols, 2, 2);
136      SetSubtreeCount(trigonometricSymbols, 1, 1);
137      SetSubtreeCount(pow, 2, 2);
138      SetSubtreeCount(root, 2, 2);
139      SetSubtreeCount(square, 1, 1);
140      SetSubtreeCount(sqrt, 1, 1);
141      SetSubtreeCount(exponentialAndLogarithmicSymbols, 1, 1);
142      SetSubtreeCount(specialFunctions, 1, 1);
143      SetSubtreeCount(terminalSymbols, 0, 0);
144
145      SetSubtreeCount(@if, 3, 3);
146      SetSubtreeCount(variableCondition, 2, 2);
147      SetSubtreeCount(comparisonSymbols, 2, 2);
148      SetSubtreeCount(and, 2, 2);
149      SetSubtreeCount(or, 2, 2);
150      SetSubtreeCount(not, 1, 1);
151      SetSubtreeCount(xor, 2, 2);
152
153      SetSubtreeCount(timeLag, 1, 1);
154      SetSubtreeCount(integral, 1, 1);
155      SetSubtreeCount(derivative, 1, 1);
156      SetSubtreeCount(laggedVariable, 0, 0);
157      SetSubtreeCount(autoregressiveVariable, 0, 0);
158      #endregion
159
160      #region allowed child symbols configuration
161      AddAllowedChildSymbol(StartSymbol, realValuedSymbols);
162      AddAllowedChildSymbol(StartSymbol, powerSymbols);
163      AddAllowedChildSymbol(StartSymbol, conditionSymbols);
164      AddAllowedChildSymbol(StartSymbol, timeSeriesSymbols);
165      AddAllowedChildSymbol(StartSymbol, specialFunctions);
166
167      AddAllowedChildSymbol(DefunSymbol, realValuedSymbols);
168      AddAllowedChildSymbol(DefunSymbol, powerSymbols);
169      AddAllowedChildSymbol(DefunSymbol, conditionSymbols);
170      AddAllowedChildSymbol(DefunSymbol, timeSeriesSymbols);
171      AddAllowedChildSymbol(DefunSymbol, specialFunctions);
172
173      AddAllowedChildSymbol(realValuedSymbols, realValuedSymbols);
174      AddAllowedChildSymbol(realValuedSymbols, powerSymbols);
175      AddAllowedChildSymbol(realValuedSymbols, conditionSymbols);
176      AddAllowedChildSymbol(realValuedSymbols, timeSeriesSymbols);
177      AddAllowedChildSymbol(realValuedSymbols, specialFunctions);
178
179      AddAllowedChildSymbol(powerSymbols, variableSymbol, 0);
180      AddAllowedChildSymbol(powerSymbols, laggedVariable, 0);
181      AddAllowedChildSymbol(powerSymbols, autoregressiveVariable, 0);
182      AddAllowedChildSymbol(powerSymbols, constant, 1);
183
184      AddAllowedChildSymbol(square, realValuedSymbols, 0);
185      AddAllowedChildSymbol(square, conditionSymbols, 0);
186      AddAllowedChildSymbol(square, timeSeriesSymbols, 0);
187
188      AddAllowedChildSymbol(sqrt, realValuedSymbols, 0);
189      AddAllowedChildSymbol(sqrt, conditionSymbols, 0);
190      AddAllowedChildSymbol(sqrt, timeSeriesSymbols, 0);
191
192      AddAllowedChildSymbol(@if, comparisonSymbols, 0);
193      AddAllowedChildSymbol(@if, booleanOperationSymbols, 0);
194      AddAllowedChildSymbol(@if, conditionSymbols, 1);
195      AddAllowedChildSymbol(@if, realValuedSymbols, 1);
196      AddAllowedChildSymbol(@if, powerSymbols, 1);
197      AddAllowedChildSymbol(@if, timeSeriesSymbols, 1);
198      AddAllowedChildSymbol(@if, conditionSymbols, 2);
199      AddAllowedChildSymbol(@if, realValuedSymbols, 2);
200      AddAllowedChildSymbol(@if, powerSymbols, 2);
201      AddAllowedChildSymbol(@if, timeSeriesSymbols, 2);
202
203      AddAllowedChildSymbol(booleanOperationSymbols, comparisonSymbols);
204      AddAllowedChildSymbol(comparisonSymbols, realValuedSymbols);
205      AddAllowedChildSymbol(comparisonSymbols, powerSymbols);
206      AddAllowedChildSymbol(comparisonSymbols, conditionSymbols);
207      AddAllowedChildSymbol(comparisonSymbols, timeSeriesSymbols);
208
209      AddAllowedChildSymbol(variableCondition, realValuedSymbols);
210      AddAllowedChildSymbol(variableCondition, powerSymbols);
211      AddAllowedChildSymbol(variableCondition, conditionSymbols);
212      AddAllowedChildSymbol(variableCondition, timeSeriesSymbols);
213
214
215      AddAllowedChildSymbol(timeLag, realValuedSymbols);
216      AddAllowedChildSymbol(timeLag, powerSymbols);
217      AddAllowedChildSymbol(timeLag, conditionSymbols);
218
219      AddAllowedChildSymbol(integral, realValuedSymbols);
220      AddAllowedChildSymbol(integral, powerSymbols);
221      AddAllowedChildSymbol(integral, conditionSymbols);
222
223      AddAllowedChildSymbol(derivative, realValuedSymbols);
224      AddAllowedChildSymbol(derivative, powerSymbols);
225      AddAllowedChildSymbol(derivative, conditionSymbols);
226      #endregion
227    }
228
229    public void ConfigureAsDefaultRegressionGrammar() {
230      Symbols.First(s => s is Average).Enabled = false;
231      Symbols.First(s => s.Name == TrigonometricFunctionsName).Enabled = false;
232      Symbols.First(s => s.Name == PowerFunctionsName).Enabled = false;
233      Symbols.First(s => s.Name == SpecialFunctionsName).Enabled = false;
234      Symbols.First(s => s.Name == ConditionalSymbolsName).Enabled = false;
235      Symbols.First(s => s.Name == TimeSeriesSymbolsName).Enabled = false;
236    }
237
238    public void ConfigureAsDefaultClassificationGrammar() {
239      Symbols.First(s => s is Average).Enabled = false;
240      Symbols.First(s => s is VariableCondition).Enabled = false;
241      Symbols.First(s => s is Xor).Enabled = false;
242      Symbols.First(s => s.Name == TrigonometricFunctionsName).Enabled = false;
243      Symbols.First(s => s.Name == ExponentialFunctionsName).Enabled = false;
244      Symbols.First(s => s.Name == SpecialFunctionsName).Enabled = false;
245      Symbols.First(s => s.Name == PowerFunctionsName).Enabled = false;
246      Symbols.First(s => s.Name == TimeSeriesSymbolsName).Enabled = false;
247    }
248
249    public void ConfigureAsDefaultTimeSeriesPrognosisGrammar() {
250      Symbols.First(s => s is Average).Enabled = false;
251      Symbols.First(s => s.Name == TrigonometricFunctionsName).Enabled = false;
252      Symbols.First(s => s.Name == PowerFunctionsName).Enabled = false;
253      Symbols.First(s => s.Name == ConditionalSymbolsName).Enabled = false;
254      Symbols.First(s => s.Name == SpecialFunctionsName).Enabled = false;
255
256      Symbols.Single(s => s.Name == "Variable").Enabled = false;
257      Symbols.First(s => s.Name == TimeSeriesSymbolsName).Enabled = true;
258      Symbols.First(s => s is Derivative).Enabled = false;
259      Symbols.First(s => s is Integral).Enabled = false;
260      Symbols.First(s => s is TimeLag).Enabled = false;
261    }
262  }
263}
Note: See TracBrowser for help on using the repository browser.