Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation.GP/3.3/SymbolicExpressionTreeStringConverter.cs @ 6765

Last change on this file since 6765 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
RevLine 
[4089]1#region License Information
2/* HeuristicLab
[5445]3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[4089]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;
[4722]23using HeuristicLab.Common;
[4089]24using HeuristicLab.Core;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[5416]27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Formatters;
[4089]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 {
[4916]33    private SymbolicExpressionTreeStringFormatter formatter;
[4089]34
[4722]35    [StorableConstructor]
[4916]36    protected SymbolicExpressionTreeStringConverter(bool deserializing) : base(deserializing) { }
[4722]37    protected SymbolicExpressionTreeStringConverter(SymbolicExpressionTreeStringConverter original, Cloner cloner)
38      : base(original, cloner) {
[4916]39      formatter = new SymbolicExpressionTreeStringFormatter();
40      formatter.Indent = original.formatter.Indent;
[4722]41    }
[4907]42    public SymbolicExpressionTreeStringConverter()
43      : base() {
44      Initialize();
45    }
46
[4722]47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new SymbolicExpressionTreeStringConverter(this, cloner);
49    }
50
[4916]51    [StorableHook(HookType.AfterDeserialization)]
52    private void AfterDeserialization() {
53      Initialize();
54    }
55
[4907]56    private void Initialize() {
[4089]57      formatter = new SymbolicExpressionTreeStringFormatter();
58      formatter.Indent = false;
59    }
60
61    protected override void ConvertSymbolicExpressionTree(SymbolicExpressionTree tree, string name, SolutionMessage.Builder builder) {
[5881]62      string stringRep = formatter.Format(tree);     
63      stringRep = stringRep.Replace(Environment.NewLine, "");
[4089]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.