2023-11-14 18:11:43 -07:00
|
|
|
digraph fn_gen_assignment {
|
|
|
|
labelloc="t";
|
|
|
|
graph [fontname = "cc wild words"];
|
|
|
|
node [fontname = "cc wild words"];
|
|
|
|
edge [fontname = "cc wild words"];
|
|
|
|
|
|
|
|
label="fn_gen_assignment(type: GazType)";
|
|
|
|
fontname=lovebeat;
|
|
|
|
rankdir=LR;
|
|
|
|
newrank=true;
|
|
|
|
|
|
|
|
a [label="fork on type"];
|
|
|
|
// read from stdinput
|
2023-11-15 14:52:41 -07:00
|
|
|
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
|
|
|
|
c [label="gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
|
2023-11-16 13:53:09 -07:00
|
|
|
d [label="gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
|
|
|
|
e [label="gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
|
|
|
|
f [label="gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
|
|
|
|
g [label="return" style=filled fillcolor=lightskyblue1];
|
2023-11-14 18:11:43 -07:00
|
|
|
|
2023-11-16 13:53:09 -07:00
|
|
|
a -> b -> g;
|
|
|
|
a -> c -> g;
|
|
|
|
a -> d -> g;
|
|
|
|
a -> e -> g;
|
|
|
|
a -> f -> g;
|
2023-11-14 18:11:43 -07:00
|
|
|
}
|