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/3.4/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs

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