- Timestamp:
- 04/17/19 17:51:09 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs
r16565 r16802 33 33 // match Koza style 34 34 {"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", "<" }, 36 56 }; 37 57
Note: See TracChangeset
for help on using the changeset viewer.