Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes start and exit insertion for singleton graphs (#1060)
In #1051 we begun inserting `start` and `exit` pseudonodes and introduced a small bug, when the graph is singleton and has a node with both indegree and outdegree equal to zero. For that graphs, instead of ``` digraph { start -> n -> exit } ``` we got ``` digraph { start -> n; start -> exit; } ``` since we didn't insert an edge from `n` to `exit`.
- Loading branch information