Skip to content

Collapse consecutive, dictionary nodes with only one, outgoing edge #72

Open
@dylon

Description

@dylon

The dictionary

![Expanded Graph](http://g.gravizo.com/g?
digraph ExpandedGraph {
size="4,4";
rankdir="LR";
root -> A;
node [style=filled,fillcolor=red];
A -> B;
B -> C;
C -> D;
D -> E;
node [style=rounded,fillcolor=white];
E -> F;
E -> G;
A -> H;
})

will become

![Collapsed Graph](http://g.gravizo.com/g?
digraph CollapsedGraph {
size="3,3";
rankdir="LR";
root -> A;
node [style=filled,fillcolor=red];
A -> BCDE;
node [style=rounded,fillcolor=white];
BCDE -> F;
BCDE -> G;
A -> H;
})

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions