- Timestamp:
- 12/20/21 13:21:35 (3 years ago)
- Location:
- branches/3140_NumberSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3140_NumberSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs
r18112 r18159 79 79 CubeRoot = 51, 80 80 Tanh = 52, 81 Constant = 5 381 Constant = 54 82 82 }; 83 83 public static class OpCodes { -
branches/3140_NumberSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeNativeInterpreter.cs
r18112 r18159 103 103 private static readonly HashSet<byte> supportedOpCodes = new HashSet<byte>() { 104 104 (byte)OpCode.Constant, 105 (byte)OpCode.Number, 105 106 (byte)OpCode.Variable, 106 107 (byte)OpCode.Add,
Note: See TracChangeset
for help on using the changeset viewer.