mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
14 lines
336 B
Text
14 lines
336 B
Text
digraph LMLayerFSM {
|
|
rankdir=LR;
|
|
|
|
node [shape = point] 0;
|
|
edge [fontname="Courier"];
|
|
|
|
node [shape = circle];
|
|
0 -> unconfigured;
|
|
unconfigured -> modelless [label="config"];
|
|
modelless -> ready [label="load"];
|
|
ready -> ready [label="predict"];
|
|
ready -> ready [label="wordbreak"];
|
|
ready -> modelless [label="unload"];
|
|
}
|