Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/18/10 18:50:16 (14 years ago)
Author:
swinkler
Message:

Renamed solution in formatters branch; implemented view for display of symbolic expression trees as strings depending on the chosen formatter. (#1270)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis.Extensions/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/SymbolicExpressionTreeStringFormatter.cs

    r4820 r4840  
    3535    [StorableConstructor]
    3636    protected SymbolicExpressionTreeStringFormatter(bool deserializing) : base(deserializing) { }
    37     protected SymbolicExpressionTreeStringFormatter(SymbolicExpressionTreeStringFormatter original, Cloner cloner) : base(original, cloner) { }
     37    protected SymbolicExpressionTreeStringFormatter(SymbolicExpressionTreeStringFormatter original, Cloner cloner)
     38      : base(original, cloner) {
     39      Indent = original.Indent;
     40    }
    3841    public SymbolicExpressionTreeStringFormatter()
    3942      : base() {
     43      Name = "Default String Formatter";
    4044      Indent = true;
    4145    }
Note: See TracChangeset for help on using the changeset viewer.