1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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 |
|
---|
22 | using System.Collections.Generic;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
|
---|
26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
27 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols;
|
---|
28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
29 | [StorableClass]
|
---|
30 | [Item("FullFunctionalExpressionGrammar", "Represents a grammar for functional expressions using all available functions.")]
|
---|
31 | public class FullFunctionalExpressionGrammar : DefaultSymbolicExpressionGrammar {
|
---|
32 | public FullFunctionalExpressionGrammar()
|
---|
33 | : base() {
|
---|
34 | Initialize();
|
---|
35 | }
|
---|
36 | [StorableConstructor]
|
---|
37 | protected FullFunctionalExpressionGrammar(bool deserializing) : base(deserializing) { }
|
---|
38 |
|
---|
39 | private void Initialize() {
|
---|
40 | var add = new Addition();
|
---|
41 | var sub = new Subtraction();
|
---|
42 | var mul = new Multiplication();
|
---|
43 | var div = new Division();
|
---|
44 | var mean = new Average();
|
---|
45 | var sin = new Sine();
|
---|
46 | var cos = new Cosine();
|
---|
47 | var tan = new Tangent();
|
---|
48 | var log = new Logarithm();
|
---|
49 | var exp = new Exponential();
|
---|
50 | var @if = new IfThenElse();
|
---|
51 | var gt = new GreaterThan();
|
---|
52 | var lt = new LessThan();
|
---|
53 | var and = new And();
|
---|
54 | var or = new Or();
|
---|
55 | var not = new Not();
|
---|
56 | var constant = new Constant();
|
---|
57 | constant.MinValue = -20;
|
---|
58 | constant.MaxValue = 20;
|
---|
59 | var variableSymbol = new HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols.Variable();
|
---|
60 | var laggedVariable = new LaggedVariable();
|
---|
61 | laggedVariable.InitialFrequency = 0.0;
|
---|
62 |
|
---|
63 | var allSymbols = new List<Symbol>() { add, sub, mul, div, mean, sin, cos, tan, log, exp, @if, gt, lt, and, or, not, constant, variableSymbol, laggedVariable };
|
---|
64 | var unaryFunctionSymbols = new List<Symbol>() { sin, cos, tan, log, exp, not };
|
---|
65 | var binaryFunctionSymbols = new List<Symbol>() { gt, lt };
|
---|
66 | var functionSymbols = new List<Symbol>() { add, sub, mul, div, mean, and, or };
|
---|
67 | var terminalSymbols = new List<Symbol>() { variableSymbol, constant, laggedVariable };
|
---|
68 |
|
---|
69 | foreach (var symb in allSymbols)
|
---|
70 | AddSymbol(symb);
|
---|
71 |
|
---|
72 | foreach (var funSymb in functionSymbols) {
|
---|
73 | SetMinSubtreeCount(funSymb, 1);
|
---|
74 | SetMaxSubtreeCount(funSymb, 3);
|
---|
75 | }
|
---|
76 | foreach (var funSymb in unaryFunctionSymbols) {
|
---|
77 | SetMinSubtreeCount(funSymb, 1);
|
---|
78 | SetMaxSubtreeCount(funSymb, 1);
|
---|
79 | }
|
---|
80 | foreach (var funSymb in binaryFunctionSymbols) {
|
---|
81 | SetMinSubtreeCount(funSymb, 2);
|
---|
82 | SetMaxSubtreeCount(funSymb, 2);
|
---|
83 | }
|
---|
84 |
|
---|
85 | foreach (var terminalSymbol in terminalSymbols) {
|
---|
86 | SetMinSubtreeCount(terminalSymbol, 0);
|
---|
87 | SetMaxSubtreeCount(terminalSymbol, 0);
|
---|
88 | }
|
---|
89 |
|
---|
90 | SetMinSubtreeCount(@if, 3);
|
---|
91 | SetMaxSubtreeCount(@if, 3);
|
---|
92 |
|
---|
93 |
|
---|
94 | // allow each symbol as child of the start symbol
|
---|
95 | foreach (var symb in allSymbols) {
|
---|
96 | SetAllowedChild(StartSymbol, symb, 0);
|
---|
97 | }
|
---|
98 |
|
---|
99 | // allow each symbol as child of every other symbol (except for terminals that have maxSubtreeCount == 0)
|
---|
100 | foreach (var parent in allSymbols) {
|
---|
101 | for (int i = 0; i < GetMaxSubtreeCount(parent); i++)
|
---|
102 | foreach (var child in allSymbols) {
|
---|
103 | SetAllowedChild(parent, child, i);
|
---|
104 | }
|
---|
105 | }
|
---|
106 | }
|
---|
107 | }
|
---|
108 | }
|
---|