Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2988_ModelsOfModels2/HeuristicLab.Algorithms.EMM/EMMGrammar.cs @ 16811

Last change on this file since 16811 was 16722, checked in by msemenki, 6 years ago

#2988: Add first version of GP for Evolvment models of models.

File size: 7.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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 HEAL.Attic;
28using HeuristicLab.Problems.DataAnalysis.Symbolic;
29
30namespace HeuristicLab.Algorithms.EvolvmentModelsOfModels {
31  [StorableType("44B0829C-1CB5-4BE9-9514-BBA54FAB2912")]
32  [Item("EMMGrammar", "Represents a grammar for functional expressions using all available functions.")]
33  public class EMMGrammar : SymbolicExpressionGrammar, ISymbolicDataAnalysisGrammar {
34    [StorableConstructor]
35    protected EMMGrammar(StorableConstructorFlag _) : base(_) { }
36    protected EMMGrammar(EMMGrammar original, Cloner cloner) : base(original, cloner) { }
37    public EMMGrammar()
38      : base(ItemAttribute.GetName(typeof(EMMGrammar)), ItemAttribute.GetDescription(typeof(EMMGrammar))) {
39      Initialize();
40    }
41
42    public override IDeepCloneable Clone(Cloner cloner) {
43      return new EMMGrammar(this, cloner);
44    }
45
46    private void Initialize() {
47      var add = new Addition();
48      var sub = new Subtraction();
49      var mul = new Multiplication();
50      var div = new Division();
51      var aq = new AnalyticQuotient();
52      var mean = new Average();
53      var sin = new Sine();
54      var cos = new Cosine();
55      var tan = new Tangent();
56      var log = new Logarithm();
57      var abs = new Absolute();
58      var pow = new Power();
59      pow.InitialFrequency = 0.0;
60      var square = new Square();
61      square.InitialFrequency = 0.0;
62      var cube = new Cube();
63      cube.InitialFrequency = 0.0;
64      var root = new Root();
65      root.InitialFrequency = 0.0;
66      var sqrt = new SquareRoot();
67      sqrt.InitialFrequency = 0.0;
68      var cubeRoot = new CubeRoot();
69      cubeRoot.InitialFrequency = 0.0;
70      var airyA = new AiryA();
71      airyA.InitialFrequency = 0.0;
72      var airyB = new AiryB();
73      airyB.InitialFrequency = 0.0;
74      var bessel = new Bessel();
75      bessel.InitialFrequency = 0.0;
76      var cosineIntegral = new CosineIntegral();
77      cosineIntegral.InitialFrequency = 0.0;
78      var dawson = new Dawson();
79      dawson.InitialFrequency = 0.0;
80      var erf = new Erf();
81      erf.InitialFrequency = 0.0;
82      var expIntegralEi = new ExponentialIntegralEi();
83      expIntegralEi.InitialFrequency = 0.0;
84      var fresnelCosineIntegral = new FresnelCosineIntegral();
85      fresnelCosineIntegral.InitialFrequency = 0.0;
86      var fresnelSineIntegral = new FresnelSineIntegral();
87      fresnelSineIntegral.InitialFrequency = 0.0;
88      var gamma = new Gamma();
89      gamma.InitialFrequency = 0.0;
90      var hypCosineIntegral = new HyperbolicCosineIntegral();
91      hypCosineIntegral.InitialFrequency = 0.0;
92      var hypSineIntegral = new HyperbolicSineIntegral();
93      hypSineIntegral.InitialFrequency = 0.0;
94      var norm = new Norm();
95      norm.InitialFrequency = 0.0;
96      var psi = new Psi();
97      psi.InitialFrequency = 0.0;
98      var sineIntegral = new SineIntegral();
99      sineIntegral.InitialFrequency = 0.0;
100
101      var exp = new Exponential();
102      var @if = new IfThenElse();
103      var gt = new GreaterThan();
104      var lt = new LessThan();
105      var and = new And();
106      var or = new Or();
107      var not = new Not();
108      var xor = new Xor();
109
110      var timeLag = new TimeLag();
111      timeLag.InitialFrequency = 0.0;
112      var integral = new Integral();
113      integral.InitialFrequency = 0.0;
114      var derivative = new Derivative();
115      derivative.InitialFrequency = 0.0;
116
117      var variableCondition = new VariableCondition();
118      variableCondition.InitialFrequency = 0.0;
119
120      var constant = new Constant();
121      var treeModel = new TreeModel();
122      constant.MinValue = -20;
123      constant.MaxValue = 20;
124      var variableSymbol = new HeuristicLab.Problems.DataAnalysis.Symbolic.Variable();
125      var binFactorVariable = new BinaryFactorVariable();
126      var factorVariable = new FactorVariable();
127      var laggedVariable = new LaggedVariable();
128      laggedVariable.InitialFrequency = 0.0;
129      var autoregressiveVariable = new AutoregressiveTargetVariable();
130      autoregressiveVariable.InitialFrequency = 0.0;
131      autoregressiveVariable.Enabled = false;
132
133      var allSymbols = new List<Symbol>() { add, sub, mul, div, aq, mean, abs, sin, cos, tan, log, square, cube, pow, sqrt, cubeRoot, root, exp,
134        airyA, airyB, bessel, cosineIntegral, dawson, erf, expIntegralEi, fresnelCosineIntegral, fresnelSineIntegral, gamma, hypCosineIntegral, hypSineIntegral, norm, psi, sineIntegral,
135        @if, gt, lt, and, or, not,xor, timeLag, integral, derivative, constant, variableSymbol, binFactorVariable, factorVariable, laggedVariable,autoregressiveVariable, variableCondition,
136        treeModel};
137      var unaryFunctionSymbols = new List<Symbol>() { abs, square, sqrt, cube, cubeRoot, sin, cos, tan, log, exp, not, timeLag, integral, derivative,
138        airyA, airyB, bessel, cosineIntegral, dawson, erf, expIntegralEi, fresnelCosineIntegral, fresnelSineIntegral, gamma, hypCosineIntegral, hypSineIntegral, norm, psi, sineIntegral
139      };
140
141      var binaryFunctionSymbols = new List<Symbol>() { pow, root, gt, lt, aq, variableCondition };
142      var ternarySymbols = new List<Symbol>() { add, sub, mul, div, mean, and, or, xor };
143      var terminalSymbols = new List<Symbol>() { variableSymbol, binFactorVariable, factorVariable, constant, laggedVariable, autoregressiveVariable, treeModel };
144
145      foreach (var symb in allSymbols)
146        AddSymbol(symb);
147
148      foreach (var funSymb in ternarySymbols) {
149        SetSubtreeCount(funSymb, 1, 3);
150      }
151      foreach (var funSymb in unaryFunctionSymbols) {
152        SetSubtreeCount(funSymb, 1, 1);
153      }
154      foreach (var funSymb in binaryFunctionSymbols) {
155        SetSubtreeCount(funSymb, 2, 2);
156      }
157      foreach (var terminalSymbol in terminalSymbols) {
158        SetSubtreeCount(terminalSymbol, 0, 0);
159      }
160
161      SetSubtreeCount(@if, 3, 3);
162
163
164      // allow each symbol as child of the start symbol
165      foreach (var symb in allSymbols) {
166        AddAllowedChildSymbol(StartSymbol, symb);
167        AddAllowedChildSymbol(DefunSymbol, symb);
168      }
169
170      // allow each symbol as child of every other symbol (except for terminals that have maxSubtreeCount == 0)
171      foreach (var parent in allSymbols.Except(terminalSymbols)) {
172        foreach (var child in allSymbols)
173          AddAllowedChildSymbol(parent, child);
174      }
175    }
176  }
177}
Note: See TracBrowser for help on using the repository browser.