Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/19/14 17:25:20 (10 years ago)
Author:
mkommend
Message:

#2076: Increased vertical and horizontal spacing for the boxes layout of symbolic expression tree charts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionTreeChart.cs

    r10799 r10862  
    416416
    417417    private void boxesToolStripMenuItem_Click(object sender, EventArgs e) {
    418       minHorizontalDistance = 1; // the boxes layout engine has no horizontal requirements, it automatically spaces nodes with boxes
     418      minHorizontalDistance = 5;
     419      minVerticalDistance = 5;
    419420      layoutEngine = new BoxesLayoutEngine<ISymbolicExpressionTreeNode>(n => n.Subtrees, n => n.GetLength(), n => n.GetDepth()) {
    420421        NodeWidth = preferredNodeWidth,
Note: See TracChangeset for help on using the changeset viewer.