Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/14 13:34:10 (10 years ago)
Author:
gkronber
Message:

#2076: fixed name for TreeLatexFormatter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.ReingoldTilfordTreeLayout/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeLatexFormatter.cs

    r9970 r10468  
    2929
    3030namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
    31   [Item("LaTeX/PDF Formatter", "Formatter for symbolic expression trees for use with latex.")]
     31  [Item("LaTeX/PDF Formatter", "Formatter for symbolic expression trees for use with latex package tikz.")]
    3232  public class SymbolicExpressionTreeLatexFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    3333    private readonly static Dictionary<string, string> symbolNameMap = new Dictionary<string, string>
     
    3939    private readonly SymbolicExpressionTreeLayoutAdapter layoutAdapter = new SymbolicExpressionTreeLayoutAdapter();
    4040
    41     public SymbolicExpressionTreeLatexFormatter() {
     41    public SymbolicExpressionTreeLatexFormatter()
     42      : base("LaTeX/PDF Formatter", "Formatter for symbolic expression trees for use with latex package tikz.") {
    4243      layoutEngine = new ReingoldTilfordLayoutEngine<ISymbolicExpressionTreeNode>();
    4344    }
Note: See TracChangeset for help on using the changeset viewer.