Changeset 10468
- Timestamp:
- 02/19/14 13:34:10 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.ReingoldTilfordTreeLayout/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Formatters/SymbolicExpressionTreeLatexFormatter.cs
r9970 r10468 29 29 30 30 namespace 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.")] 32 32 public class SymbolicExpressionTreeLatexFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter { 33 33 private readonly static Dictionary<string, string> symbolNameMap = new Dictionary<string, string> … … 39 39 private readonly SymbolicExpressionTreeLayoutAdapter layoutAdapter = new SymbolicExpressionTreeLayoutAdapter(); 40 40 41 public SymbolicExpressionTreeLatexFormatter() { 41 public SymbolicExpressionTreeLatexFormatter() 42 : base("LaTeX/PDF Formatter", "Formatter for symbolic expression trees for use with latex package tikz.") { 42 43 layoutEngine = new ReingoldTilfordLayoutEngine<ISymbolicExpressionTreeNode>(); 43 44 }
Note: See TracChangeset
for help on using the changeset viewer.