I'm trying to draw a pretty simple diagram in dot.
digraph untitled
{
rankdir = LR;
{rank=same; S; A}
B -> A;
B -> S;
A -> A;
S -> S;
A -> S ;
S -> A;
A -> T;
S -> T;
}
The results I get is
I really have to change the edge from S -> S
, but I would also like to change the orientation of the arrows so they loop from left to right.