[4803] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11208] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4803] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System.Text;
|
---|
[11460] | 23 | using HeuristicLab.Common;
|
---|
[4820] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[4803] | 26 |
|
---|
[5499] | 27 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
[4820] | 28 |
|
---|
[9649] | 29 | [Item("Default String Formatter", "The default string formatter for symbolic expression trees.")]
|
---|
[4820] | 30 | [StorableClass]
|
---|
| 31 | public class SymbolicExpressionTreeStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
|
---|
| 32 |
|
---|
[4803] | 33 | public bool Indent { get; set; }
|
---|
[4820] | 34 |
|
---|
| 35 | [StorableConstructor]
|
---|
| 36 | protected SymbolicExpressionTreeStringFormatter(bool deserializing) : base(deserializing) { }
|
---|
[4840] | 37 | protected SymbolicExpressionTreeStringFormatter(SymbolicExpressionTreeStringFormatter original, Cloner cloner)
|
---|
| 38 | : base(original, cloner) {
|
---|
| 39 | Indent = original.Indent;
|
---|
| 40 | }
|
---|
[4803] | 41 | public SymbolicExpressionTreeStringFormatter()
|
---|
| 42 | : base() {
|
---|
[4840] | 43 | Name = "Default String Formatter";
|
---|
[4803] | 44 | Indent = true;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[5510] | 47 | public string Format(ISymbolicExpressionTree symbolicExpressionTree) {
|
---|
[4803] | 48 | return FormatRecursively(symbolicExpressionTree.Root, 0);
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[11460] | 51 | public string Format(ISymbolicExpressionTreeNode symbolicExpressionTreeNode) {
|
---|
| 52 | return FormatRecursively(symbolicExpressionTreeNode, 0);
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[5499] | 55 | private string FormatRecursively(ISymbolicExpressionTreeNode node, int indentLength) {
|
---|
[4803] | 56 | StringBuilder strBuilder = new StringBuilder();
|
---|
| 57 | if (Indent) strBuilder.Append(' ', indentLength);
|
---|
| 58 | strBuilder.Append("(");
|
---|
| 59 | // internal nodes or leaf nodes?
|
---|
[11638] | 60 | if (node.SubtreeCount > 0) {
|
---|
[4803] | 61 | // symbol on same line as '('
|
---|
| 62 | strBuilder.AppendLine(node.ToString());
|
---|
| 63 | // each subtree expression on a new line
|
---|
| 64 | // and closing ')' also on new line
|
---|
[5733] | 65 | foreach (var subtree in node.Subtrees) {
|
---|
[4803] | 66 | strBuilder.AppendLine(FormatRecursively(subtree, indentLength + 2));
|
---|
| 67 | }
|
---|
| 68 | if (Indent) strBuilder.Append(' ', indentLength);
|
---|
| 69 | strBuilder.Append(")");
|
---|
| 70 | } else {
|
---|
| 71 | // symbol in the same line with as '(' and ')'
|
---|
| 72 | strBuilder.Append(node.ToString());
|
---|
| 73 | strBuilder.Append(")");
|
---|
| 74 | }
|
---|
| 75 | return strBuilder.ToString();
|
---|
| 76 | }
|
---|
[4820] | 77 |
|
---|
| 78 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 79 | return new SymbolicExpressionTreeStringFormatter(this, cloner);
|
---|
| 80 | }
|
---|
[4803] | 81 | }
|
---|
| 82 | }
|
---|