Changeset 17434 for branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs
- Timestamp:
- 02/11/20 13:36:02 (5 years ago)
- Location:
- branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
-
branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs
r16130 r17434 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-2018Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 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.