Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/13 10:17:37 (11 years ago)
Author:
gkronber
Message:

#1270 made changes as suggested in the review comments

  • initially select default string formatter in the symbolic expression view
  • renamed smalltalk formatter and fixed the namespace
  • fixed namespace of GraphViz formatter
  • removed unused usings
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Formatters/SymbolicDataAnalysisExpressionSmalltalkFormatter.cs

    r9820 r9821  
    2222using System.Globalization;
    2323using System.Text;
     24using HeuristicLab.Common;
    2425using HeuristicLab.Core;
    25 using HeuristicLab.Common;
    26 using HeuristicLab.Problems.DataAnalysis.Symbolic;
    27 using Variable = HeuristicLab.Problems.DataAnalysis.Symbolic.Variable;
     26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2827
    29 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Formatters {
     28namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    3029
    3130  [Item("Smalltalk String Formatter", "String formatter for string representations of symbolic expression trees in Smalltalk syntax.")]
    32   public class SymbolicExpressionTreeSmalltalkStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
     31  public class SymbolicDataAnalysisExpressionSmalltalkFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    3332
    34     protected SymbolicExpressionTreeSmalltalkStringFormatter(SymbolicExpressionTreeSmalltalkStringFormatter original, Cloner cloner) : base(original, cloner) { }
    35     public SymbolicExpressionTreeSmalltalkStringFormatter()
     33    protected SymbolicDataAnalysisExpressionSmalltalkFormatter(SymbolicDataAnalysisExpressionSmalltalkFormatter original, Cloner cloner) : base(original, cloner) { }
     34    public SymbolicDataAnalysisExpressionSmalltalkFormatter()
    3635      : base() {
    37       Name = "Smalltalk String Formatter";
     36      Name = ItemName;
     37      Description = ItemDescription;
    3838    }
    3939
     
    180180
    181181    public override IDeepCloneable Clone(Cloner cloner) {
    182       return new SymbolicExpressionTreeSmalltalkStringFormatter(this, cloner);
     182      return new SymbolicDataAnalysisExpressionSmalltalkFormatter(this, cloner);
    183183    }
    184184  }
Note: See TracChangeset for help on using the changeset viewer.