Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs @ 16520

Last change on this file since 16520 was 16520, checked in by pfleck, 5 years ago

#2947 merged trunk into branch

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