1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
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;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
28 |
|
---|
29 | [Item("Default String Formatter", "The default string formatter for symbolic expression trees.")]
|
---|
30 | [StorableClass]
|
---|
31 | public class SymbolicExpressionTreeStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
|
---|
32 |
|
---|
33 | public bool Indent { get; set; }
|
---|
34 |
|
---|
35 | [StorableConstructor]
|
---|
36 | protected SymbolicExpressionTreeStringFormatter(bool deserializing) : base(deserializing) { }
|
---|
37 | protected SymbolicExpressionTreeStringFormatter(SymbolicExpressionTreeStringFormatter original, Cloner cloner)
|
---|
38 | : base(original, cloner) {
|
---|
39 | Indent = original.Indent;
|
---|
40 | }
|
---|
41 | public SymbolicExpressionTreeStringFormatter()
|
---|
42 | : base() {
|
---|
43 | Name = "Default String Formatter";
|
---|
44 | Indent = true;
|
---|
45 | }
|
---|
46 |
|
---|
47 | public string Format(ISymbolicExpressionTree symbolicExpressionTree) {
|
---|
48 | return FormatRecursively(symbolicExpressionTree.Root, 0);
|
---|
49 | }
|
---|
50 |
|
---|
51 | public string Format(ISymbolicExpressionTreeNode symbolicExpressionTreeNode) {
|
---|
52 | return FormatRecursively(symbolicExpressionTreeNode, 0);
|
---|
53 | }
|
---|
54 |
|
---|
55 | private string FormatRecursively(ISymbolicExpressionTreeNode node, int indentLength) {
|
---|
56 | StringBuilder strBuilder = new StringBuilder();
|
---|
57 | if (Indent) strBuilder.Append(' ', indentLength);
|
---|
58 | strBuilder.Append("(");
|
---|
59 | // internal nodes or leaf nodes?
|
---|
60 | if (node.SubtreeCount > 0) {
|
---|
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
|
---|
65 | foreach (var subtree in node.Subtrees) {
|
---|
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 | }
|
---|
77 |
|
---|
78 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
79 | return new SymbolicExpressionTreeStringFormatter(this, cloner);
|
---|
80 | }
|
---|
81 | }
|
---|
82 | }
|
---|