Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/19 10:31:37 (5 years ago)
Author:
bburlacu
Message:

#2866: Support hyperbolic tangent in native interpreter.

Location:
trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1

    • Property svn:global-ignores set to
      build
      mingw
  • trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/instruction.h

    r16356 r16701  
    99{
    1010    // same values as in OpCodes.cs
    11     Add = 1,
    12     Sub = 2,
    13     Mul = 3,
    14     Div = 4,
    15     Sin = 5,
    16     Cos = 6,
    17     Tan = 7,
    18     Log = 8,
    19     Exp = 9,
    20     Var = 18,
    21     Const = 20,
    22     Power = 22,
    23     Root = 23,
    24     Square = 28,
    25     Sqrt = 29,
    26     Absolute = 48,
     11    Add                = 1,
     12    Sub                = 2,
     13    Mul                = 3,
     14    Div                = 4,
     15    Sin                = 5,
     16    Cos                = 6,
     17    Tan                = 7,
     18    Log                = 8,
     19    Exp                = 9,
     20    Var                = 18,
     21    Const              = 20,
     22    Power              = 22,
     23    Root               = 23,
     24    Square             = 28,
     25    Sqrt               = 29,
     26    Absolute           = 48,
    2727    AnalyticalQuotient = 49,
    28     Cube = 50,
    29     CubeRoot = 51
     28    Cube               = 50,
     29    CubeRoot           = 51,
     30    Tanh               = 52
    3031};
    3132
Note: See TracChangeset for help on using the changeset viewer.