Add pedagogic content
This commit is contained in:
14
web_src/05_Lectures/00_Computers/unix/images/exp1.dot
Normal file
14
web_src/05_Lectures/00_Computers/unix/images/exp1.dot
Normal file
@@ -0,0 +1,14 @@
|
||||
digraph finite_state_machine {
|
||||
rankdir=LR;
|
||||
{
|
||||
node [style = invis]; I;
|
||||
}
|
||||
node [shape = doublecircle]; 3;
|
||||
node [shape = circle];
|
||||
I -> 0
|
||||
0 -> 1 [ label = "t" ];
|
||||
1 -> 2 [ label = "o" ];
|
||||
2 -> 2 [ label = "t" ];
|
||||
2 -> 3 [ label = "o" ];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user