mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-09 00:46:57 +00:00
Rather than a "tutorial", it was suggested to move the graphviz information to the devleoper-guides, along with the documentation guidelines. Makes sense. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
12 lines
386 B
Plaintext
12 lines
386 B
Plaintext
digraph gaspump {
|
|
rankdir=LR;
|
|
node [shape = circle;];
|
|
edge [color = grey; fontsize=10];
|
|
S0 -> S1 [ label = "Lift Nozzle" ]
|
|
S1 -> S0 [ label = "Replace Nozzle" ]
|
|
S1 -> S2 [ label = "Authorize Pump" ]
|
|
S2 -> S0 [ label = "Replace Nozzle" ]
|
|
S2 -> S3 [ label = "Pull Trigger" ]
|
|
S3 -> S2 [ label = "Release Trigger" ]
|
|
}
|