Line 4: Line 4:
 
digraph example2 {
 
digraph example2 {
 
rankdir=LR;
 
rankdir=LR;
node [shape = none]; "";
+
node [shape = none] "";
node [shape = doublecircle]; q3;
+
node [shape = doublecircle] q3;
 
node [shape = circle];
 
node [shape = circle];
  
  ""-> q0->q1[label="0,1"]->q2->q3;
+
""-> q0;
  q0 -> q0[label="0,1"];
+
q0->q1 [label="1"];
  q2 -> q2[label="0,1"];
+
q1->q2;
 +
q2->q3;
 +
q0 -> q0[label="0,1"];
 +
q2 -> q2[label="0,1"];
 
}
 
}
 
</graphviz>
 
</graphviz>

Revision as of 11:07, 11 July 2014


2014.1.16


2014.1.16