macro-machines 0.8.1

State machine macros with logging and graphviz DOT file generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
digraph {
  rankdir=LR
  node [shape=record, style=rounded, fontname="Sans Bold"]
  edge [fontname="Sans"]
  subgraph cluster_M {
    label=<M<BR ALIGN="LEFT"/>>
    shape=record
    style=rounded
    fontname="Sans Bold Italic"
    INITIAL [label="", shape=circle, width=0.2, style=filled, fillcolor=black]
    S [label=<<B>S</B>>]
    T [label=<<B>T</B>>]
    INITIAL -> S
    "S" -> "T" [label=<<FONT FACE="Sans Italic">A</FONT>>]
  }
}