Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/17/19 17:51:09 (5 years ago)
Author:
gkronber
Message:

#2915 added support for abs(), aq(), cube(), cuberoot() to formatters. Skipped the TSQLFormatter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/Formatters/SymbolicExpressionTreeLatexFormatter.cs

    r16565 r16802  
    3535    {
    3636      {"ProgramRootSymbol", "Prog"},
    37       {"StartSymbol","RPB"}
     37      {"StartSymbol","RPB"},
     38      // short form
     39      {"Subtraction", "-" },
     40      {"Addition", "+" },
     41      {"Multiplication", "*" },
     42      {"Division", "/" },
     43      {"Absolute", "abs" },
     44      {"AnalyticQuotient", "AQ" },
     45      {"Sine", "sin" },
     46      {"Cosine", "cos" },
     47      {"Tanget", "tan" },
     48      {"HyperbolicTangent", "tanh" },
     49      {"Exponential", "exp" },
     50      {"Logarithm", "log" },
     51      {"SquareRoot", "sqrt" },
     52      {"Square", "sqr" },
     53      {"CubeRoot", "cbrt" },
     54      {"Cube", "cube" },
     55      {"GreaterThan", ">" },
     56      {"LessThan", "<" },
    3857    };
    3958
Note: See TracChangeset for help on using the changeset viewer.