Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.4/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/SymbolicExpressionTreeStringConverter.cs @ 7716

Last change on this file since 7716 was 5881, checked in by epitzer, 13 years ago

Adopt TypeCoherentExpressionGrammar from HeuristicLab.Problems.DataAnalysis.Symbolic for external evaluation (#1459)

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Formatters;
28
29namespace HeuristicLab.Problems.ExternalEvaluation.GP {
30  [Item("SymbolicExpressionTreeStringConverter", "Converts a symbolic expression tree into a string representation by iterating over all nodes in a prefix way. The string is added to the SolutionMessage's StringVars.")]
31  [StorableClass]
32  public class SymbolicExpressionTreeStringConverter : SymbolicExpressionTreeConverter {
33    private SymbolicExpressionTreeStringFormatter formatter;
34
35    [StorableConstructor]
36    protected SymbolicExpressionTreeStringConverter(bool deserializing) : base(deserializing) { }
37    protected SymbolicExpressionTreeStringConverter(SymbolicExpressionTreeStringConverter original, Cloner cloner)
38      : base(original, cloner) {
39      formatter = new SymbolicExpressionTreeStringFormatter();
40      formatter.Indent = original.formatter.Indent;
41    }
42    public SymbolicExpressionTreeStringConverter()
43      : base() {
44      Initialize();
45    }
46
47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new SymbolicExpressionTreeStringConverter(this, cloner);
49    }
50
51    [StorableHook(HookType.AfterDeserialization)]
52    private void AfterDeserialization() {
53      Initialize();
54    }
55
56    private void Initialize() {
57      formatter = new SymbolicExpressionTreeStringFormatter();
58      formatter.Indent = false;
59    }
60
61    protected override void ConvertSymbolicExpressionTree(SymbolicExpressionTree tree, string name, SolutionMessage.Builder builder) {
62      string stringRep = formatter.Format(tree);     
63      stringRep = stringRep.Replace(Environment.NewLine, "");
64      SolutionMessage.Types.StringVariable.Builder stringVariable = SolutionMessage.Types.StringVariable.CreateBuilder();
65      stringVariable.SetName(name).SetData(stringRep);
66      builder.AddStringVars(stringVariable.Build());
67    }
68  }
69}
Note: See TracBrowser for help on using the repository browser.