1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
27 | public static class OpCodes {
|
---|
28 | public const byte Add = 1;
|
---|
29 | public const byte Sub = 2;
|
---|
30 | public const byte Mul = 3;
|
---|
31 | public const byte Div = 4;
|
---|
32 |
|
---|
33 | public const byte Sin = 5;
|
---|
34 | public const byte Cos = 6;
|
---|
35 | public const byte Tan = 7;
|
---|
36 |
|
---|
37 | public const byte Log = 8;
|
---|
38 | public const byte Exp = 9;
|
---|
39 |
|
---|
40 | public const byte IfThenElse = 10;
|
---|
41 |
|
---|
42 | public const byte GT = 11;
|
---|
43 | public const byte LT = 12;
|
---|
44 |
|
---|
45 | public const byte AND = 13;
|
---|
46 | public const byte OR = 14;
|
---|
47 | public const byte NOT = 15;
|
---|
48 | public const byte XOR = 45;
|
---|
49 |
|
---|
50 |
|
---|
51 | public const byte Average = 16;
|
---|
52 |
|
---|
53 | public const byte Call = 17;
|
---|
54 |
|
---|
55 | public const byte Variable = 18;
|
---|
56 | public const byte LagVariable = 19;
|
---|
57 | public const byte Constant = 20;
|
---|
58 | public const byte Arg = 21;
|
---|
59 |
|
---|
60 | public const byte Power = 22;
|
---|
61 | public const byte Root = 23;
|
---|
62 | public const byte TimeLag = 24;
|
---|
63 | public const byte Integral = 25;
|
---|
64 | public const byte Derivative = 26;
|
---|
65 |
|
---|
66 | public const byte VariableCondition = 27;
|
---|
67 |
|
---|
68 | public const byte Square = 28;
|
---|
69 | public const byte SquareRoot = 29;
|
---|
70 | public const byte Gamma = 30;
|
---|
71 | public const byte Psi = 31;
|
---|
72 | public const byte Dawson = 32;
|
---|
73 | public const byte ExponentialIntegralEi = 33;
|
---|
74 | public const byte CosineIntegral = 34;
|
---|
75 | public const byte SineIntegral = 35;
|
---|
76 | public const byte HyperbolicCosineIntegral = 36;
|
---|
77 | public const byte HyperbolicSineIntegral = 37;
|
---|
78 | public const byte FresnelCosineIntegral = 38;
|
---|
79 | public const byte FresnelSineIntegral = 39;
|
---|
80 | public const byte AiryA = 40;
|
---|
81 | public const byte AiryB = 41;
|
---|
82 | public const byte Norm = 42;
|
---|
83 | public const byte Erf = 43;
|
---|
84 | public const byte Bessel = 44;
|
---|
85 | public const byte FactorVariable = 46;
|
---|
86 | public const byte BinaryFactorVariable = 47;
|
---|
87 |
|
---|
88 |
|
---|
89 | private static Dictionary<Type, byte> symbolToOpcode = new Dictionary<Type, byte>() {
|
---|
90 | { typeof(Addition), OpCodes.Add },
|
---|
91 | { typeof(Subtraction), OpCodes.Sub },
|
---|
92 | { typeof(Multiplication), OpCodes.Mul },
|
---|
93 | { typeof(Division), OpCodes.Div },
|
---|
94 | { typeof(Sine), OpCodes.Sin },
|
---|
95 | { typeof(Cosine), OpCodes.Cos },
|
---|
96 | { typeof(Tangent), OpCodes.Tan },
|
---|
97 | { typeof(Logarithm), OpCodes.Log },
|
---|
98 | { typeof(Exponential), OpCodes.Exp },
|
---|
99 | { typeof(IfThenElse), OpCodes.IfThenElse },
|
---|
100 | { typeof(GreaterThan), OpCodes.GT },
|
---|
101 | { typeof(LessThan), OpCodes.LT },
|
---|
102 | { typeof(And), OpCodes.AND },
|
---|
103 | { typeof(Or), OpCodes.OR },
|
---|
104 | { typeof(Not), OpCodes.NOT},
|
---|
105 | { typeof(Xor),OpCodes.XOR},
|
---|
106 | { typeof(Average), OpCodes.Average},
|
---|
107 | { typeof(InvokeFunction), OpCodes.Call },
|
---|
108 | { typeof(Variable), OpCodes.Variable },
|
---|
109 | { typeof(LaggedVariable), OpCodes.LagVariable },
|
---|
110 | { typeof(AutoregressiveTargetVariable),OpCodes.LagVariable},
|
---|
111 | { typeof(Constant), OpCodes.Constant },
|
---|
112 | { typeof(Argument), OpCodes.Arg },
|
---|
113 | { typeof(Power),OpCodes.Power},
|
---|
114 | { typeof(Root),OpCodes.Root},
|
---|
115 | { typeof(TimeLag), OpCodes.TimeLag},
|
---|
116 | { typeof(Integral), OpCodes.Integral},
|
---|
117 | { typeof(Derivative), OpCodes.Derivative},
|
---|
118 | { typeof(VariableCondition),OpCodes.VariableCondition},
|
---|
119 | { typeof(Square),OpCodes.Square},
|
---|
120 | { typeof(SquareRoot),OpCodes.SquareRoot},
|
---|
121 | { typeof(Gamma), OpCodes.Gamma },
|
---|
122 | { typeof(Psi), OpCodes.Psi },
|
---|
123 | { typeof(Dawson), OpCodes.Dawson},
|
---|
124 | { typeof(ExponentialIntegralEi), OpCodes.ExponentialIntegralEi },
|
---|
125 | { typeof(CosineIntegral), OpCodes.CosineIntegral },
|
---|
126 | { typeof(SineIntegral), OpCodes.SineIntegral },
|
---|
127 | { typeof(HyperbolicCosineIntegral), OpCodes.HyperbolicCosineIntegral },
|
---|
128 | { typeof(HyperbolicSineIntegral), OpCodes.HyperbolicSineIntegral },
|
---|
129 | { typeof(FresnelCosineIntegral), OpCodes.FresnelCosineIntegral },
|
---|
130 | { typeof(FresnelSineIntegral), OpCodes.FresnelSineIntegral },
|
---|
131 | { typeof(AiryA), OpCodes.AiryA },
|
---|
132 | { typeof(AiryB), OpCodes.AiryB },
|
---|
133 | { typeof(Norm), OpCodes.Norm},
|
---|
134 | { typeof(Erf), OpCodes.Erf},
|
---|
135 | { typeof(Bessel), OpCodes.Bessel},
|
---|
136 | { typeof(FactorVariable), OpCodes.FactorVariable },
|
---|
137 | { typeof(BinaryFactorVariable), OpCodes.BinaryFactorVariable }
|
---|
138 | };
|
---|
139 |
|
---|
140 | public static byte MapSymbolToOpCode(ISymbolicExpressionTreeNode treeNode) {
|
---|
141 | byte opCode;
|
---|
142 | if (symbolToOpcode.TryGetValue(treeNode.Symbol.GetType(), out opCode)) return opCode;
|
---|
143 | else throw new NotSupportedException("Symbol: " + treeNode.Symbol);
|
---|
144 | }
|
---|
145 | }
|
---|
146 | }
|
---|