Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs @ 7930

Last change on this file since 7930 was 7930, checked in by mkommend, 12 years ago

#1081: Refactored symbolic expression tree interpreter in preparation for autoregressive single variate prognosis.

File size: 5.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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  internal 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
85    private static Dictionary<Type, byte> symbolToOpcode = new Dictionary<Type, byte>() {
86      { typeof(Addition), OpCodes.Add },
87      { typeof(Subtraction), OpCodes.Sub },
88      { typeof(Multiplication), OpCodes.Mul },
89      { typeof(Division), OpCodes.Div },
90      { typeof(Sine), OpCodes.Sin },
91      { typeof(Cosine), OpCodes.Cos },
92      { typeof(Tangent), OpCodes.Tan },
93      { typeof(Logarithm), OpCodes.Log },
94      { typeof(Exponential), OpCodes.Exp },
95      { typeof(IfThenElse), OpCodes.IfThenElse },
96      { typeof(GreaterThan), OpCodes.GT },
97      { typeof(LessThan), OpCodes.LT },
98      { typeof(And), OpCodes.AND },
99      { typeof(Or), OpCodes.OR },
100      { typeof(Not), OpCodes.NOT},
101      { typeof(Average), OpCodes.Average},
102      { typeof(InvokeFunction), OpCodes.Call },
103      { typeof(Variable), OpCodes.Variable },
104      { typeof(LaggedVariable), OpCodes.LagVariable },
105      { typeof(Constant), OpCodes.Constant },
106      { typeof(Argument), OpCodes.Arg },
107      { typeof(Power),OpCodes.Power},
108      { typeof(Root),OpCodes.Root},
109      { typeof(TimeLag), OpCodes.TimeLag},
110      { typeof(Integral), OpCodes.Integral},
111      { typeof(Derivative), OpCodes.Derivative},
112      { typeof(VariableCondition),OpCodes.VariableCondition},
113      { typeof(Square),OpCodes.Square},
114      { typeof(SquareRoot),OpCodes.SquareRoot},
115      { typeof(Gamma), OpCodes.Gamma },
116      { typeof(Psi), OpCodes.Psi },
117      { typeof(Dawson), OpCodes.Dawson},
118      { typeof(ExponentialIntegralEi), OpCodes.ExponentialIntegralEi },
119      { typeof(CosineIntegral), OpCodes.CosineIntegral },
120      { typeof(SineIntegral), OpCodes.SineIntegral },
121      { typeof(HyperbolicCosineIntegral), OpCodes.HyperbolicCosineIntegral },
122      { typeof(HyperbolicSineIntegral), OpCodes.HyperbolicSineIntegral },
123      { typeof(FresnelCosineIntegral), OpCodes.FresnelCosineIntegral },
124      { typeof(FresnelSineIntegral), OpCodes.FresnelSineIntegral },
125      { typeof(AiryA), OpCodes.AiryA },
126      { typeof(AiryB), OpCodes.AiryB },
127      { typeof(Norm), OpCodes.Norm},
128      { typeof(Erf), OpCodes.Erf},
129      { typeof(Bessel), OpCodes.Bessel}     
130    };
131
132    public static byte MapSymbolToOpCode(ISymbolicExpressionTreeNode treeNode) {
133      byte opCode;
134      if (symbolToOpcode.TryGetValue(treeNode.Symbol.GetType(), out opCode))
135        return opCode;
136      else
137        throw new NotSupportedException("Symbol: " + treeNode.Symbol);
138    }
139  }
140}
Note: See TracBrowser for help on using the repository browser.