Graphviz: update to orange color

This commit is contained in:
Akemi Izuko 2023-11-15 14:52:41 -07:00
parent 25e5ea1560
commit 70c1df8e0a
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC
15 changed files with 90 additions and 90 deletions

View file

@ -11,7 +11,7 @@ digraph fn_args {
newrank=true;
A [label="for each type"];
B [label="get_instant(GazType)" shape=diamond style=filled fillcolor=lightcoral];
B [label="get_instant(GazType)" shape=diamond style=filled fillcolor=lightsalmon];
C [label="pack into var"];
D [label="return" style=filled fillcolor=lightskyblue];
A -> B -> C -> A;

View file

@ -10,8 +10,8 @@ digraph fn_gen_return {
newrank=true;
a [label="choice" rank=max];
b [label="gen_if_statement_with_return()" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_loop_with_return()" shape=diamond style=filled fillcolor=lightcoral];
b [label="gen_if_statement_with_return()" shape=diamond style=filled fillcolor=lightsalmon];
c [label="gen_loop_with_return()" shape=diamond style=filled fillcolor=lightsalmon];
d [label="return"];
e [label="gen correct type"];
f [label="return" style=filled fillcolor=lightskyblue1];

View file

@ -11,11 +11,11 @@ digraph fn_gen_statement {
a [label="can declare" rank=max];
b [label="cannot declare" rank=min];
c [label="gen_decl()" shape=diamond style=filled fillcolor=lightcoral];
d [label="gen_if_statement()" shape=diamond style=filled fillcolor=lightcoral];
e [label="gen_std_output()" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_loop()" shape=diamond style=filled fillcolor=lightcoral];
g [label="gen_assignment()" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_decl()" shape=diamond style=filled fillcolor=lightsalmon];
d [label="gen_if_statement()" shape=diamond style=filled fillcolor=lightsalmon];
e [label="gen_std_output()" shape=diamond style=filled fillcolor=lightsalmon];
f [label="gen_loop()" shape=diamond style=filled fillcolor=lightsalmon];
g [label="gen_assignment()" shape=diamond style=filled fillcolor=lightsalmon];
h [label="return" style=filled fillcolor=lightskyblue1];
a -> c -> a;

View file

@ -12,10 +12,10 @@ digraph fn_gen_function {
a [label="push args into scope"];
b [label="new scope"];
c [label="gen_statement()" shape=diamond style=filled
fillcolor=lightcoral];
fillcolor=lightsalmon];
d [label="fork on return"];
e [label="gen_return(GazType)" shape=diamond style=filled
fillcolor=lightcoral];
fillcolor=lightsalmon];
f [label="return" style=filled fillcolor=lightskyblue1];
a -> b -> c -> d;

View file

@ -11,12 +11,12 @@ digraph fn_gen_assignment {
a [label="fork on type"];
// read from stdinput
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_character()" shape=diamond style=filled fillcolor=lightcoral];
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
c [label="gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
d [label="create real"]
e [label="gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_real()" shape=diamond style=filled fillcolor=lightcoral];
g [label="gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
e [label="gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
f [label="gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
g [label="gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
k [label="return" style=filled fillcolor=lightskyblue1];
{rank=same; b c e f g}

View file

@ -10,12 +10,12 @@ digraph fn_gen_decl {
newrank=true;
a [label="fork on type"];
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_character()" shape=diamond style=filled fillcolor=lightcoral];
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
c [label="gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
d [label="create real"]
e [label="gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_real()" shape=diamond style=filled fillcolor=lightcoral];
g [label="gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
e [label="gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
f [label="gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
g [label="gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
h [label="fork on qual"];
i [label="push to mut scope"];
j [label="push to const scope"];

View file

@ -10,12 +10,12 @@ digraph fn_gen_decl {
newrank=true;
a [label="fork on type"];
b [label="gen_boolean(global=true)" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_character(global=true)" shape=diamond style=filled fillcolor=lightcoral];
b [label="gen_boolean(global=true)" shape=diamond style=filled fillcolor=lightsalmon];
c [label="gen_character(global=true)" shape=diamond style=filled fillcolor=lightsalmon];
d [label="create real"]
e [label="gen_integer(global=true)" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_real(global=true)" shape=diamond style=filled fillcolor=lightcoral];
g [label="gen_tuple(global=true)" shape=diamond style=filled fillcolor=lightcoral];
e [label="gen_integer(global=true)" shape=diamond style=filled fillcolor=lightsalmon];
f [label="gen_real(global=true)" shape=diamond style=filled fillcolor=lightsalmon];
g [label="gen_tuple(global=true)" shape=diamond style=filled fillcolor=lightsalmon];
h [label="push to global scope"];
i [label="return" style=filled fillcolor=lightskyblue1];

View file

@ -9,15 +9,15 @@ digraph fn_gen_if_statement {
rankdir=TB;
newrank=true;
a [label="gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a [label="gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
b [label="push new scope"];
c [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightsalmon];
d [label="choice"];
e [label="else if"];
f [label="gen_if_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_if_statement(with_return)" shape=diamond style=filled fillcolor=lightsalmon];
g [label="else"];
h [label="push new scope"];
i [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
i [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightsalmon];
j [label="return" style=filled fillcolor=lightskyblue1];
{rank=same; e g}

View file

@ -11,7 +11,7 @@ digraph fn_gen_loop {
a0 [label="choice"];
a1 [label="infinite_loop"];
a2 [label="gen_statement(with_break)" shape=diamond style=filled fillcolor=lightcoral];
a2 [label="gen_statement(with_break)" shape=diamond style=filled fillcolor=lightsalmon];
a3 [label="predicate_loop"];
a4 [label="todo" style=filled fillcolor=magenta];
a5 [label="return" style=filled fillcolor=lightskyblue1];

View file

@ -10,7 +10,7 @@ digraph fn_gen_std_output {
newrank=true;
a [label="fork on type"];
b [label="get_instant(type)" shape=diamond style=filled fillcolor=lightcoral];
b [label="get_instant(type)" shape=diamond style=filled fillcolor=lightsalmon];
c [label="return" style=filled fillcolor=lightskyblue1];
a -> b -> c;

View file

@ -11,55 +11,55 @@ digraph fn_gen_boolean {
a0 [label="choice" rank=max];
a1 [label="AND expr"];
a2 [label="lhs gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a3 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a2 [label="lhs gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
a3 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
a4 [label="OR expr"];
a5 [label="lhs gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a6 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a5 [label="lhs gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
a6 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
a7 [label="NOT expr"];
a8 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
a8 [label="rhs gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
a9 [label="GT expr"];
b0 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b1 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b0 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b1 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b2 [label="GE expr"];
b3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b5 [label="LT expr"];
b6 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b7 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b6 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b7 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b8 [label="LE expr"];
b9 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
c0 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b9 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c0 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c1 [label="EQ expr"];
c2 [label="real_eq"];
c3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
c4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
c3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c5 [label="char_eq"];
c6 [label="lhs gen_character()" shape=diamond style=filled fillcolor=lightcoral];
c7 [label="rhs gen_character()" shape=diamond style=filled fillcolor=lightcoral];
c6 [label="lhs gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
c7 [label="rhs gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
c8 [label="tuple_eq"];
c9 [label="lhs gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
d0 [label="rhs gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
c9 [label="lhs gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
d0 [label="rhs gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
d1 [label="NE expr"];
d2 [label="real_eq"];
d3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
d4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
d3 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
d4 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
d5 [label="char_eq"];
d6 [label="lhs gen_character()" shape=diamond style=filled fillcolor=lightcoral];
d7 [label="rhs gen_character()" shape=diamond style=filled fillcolor=lightcoral];
d6 [label="lhs gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
d7 [label="rhs gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
d8 [label="tuple_eq"];
d9 [label="lhs gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
e0 [label="rhs gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
d9 [label="lhs gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
e0 [label="rhs gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
node [shape=diamond style=filled fillcolor=lightcoral];
node [shape=diamond style=filled fillcolor=lightsalmon];
e1 [label="get_instant()"];
e4 [label="return" shape=oval style=filled fillcolor=lightskyblue1];

View file

@ -10,7 +10,7 @@ digraph fn_gen_character {
newrank=true;
a [label="choice" rank=max];
b [label="get_instant()" shape=diamond style=filled fillcolor=lightcoral];
b [label="get_instant()" shape=diamond style=filled fillcolor=lightsalmon];
f [label="return" shape=oval style=filled fillcolor=lightskyblue1];
a -> b -> f;

View file

@ -12,36 +12,36 @@ digraph fn_gen_integer {
a0 [label="choice" rank=max];
a1 [label="ADD expr"];
a2 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a3 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a2 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
a3 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
a4 [label="SUB expr"];
a5 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a6 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a5 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
a6 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
a7 [label="MUL expr"];
a8 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a9 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
a8 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
a9 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b0 [label="DIV expr"];
b1 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b2 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b1 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b2 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b3 [label="REM expr"];
b4 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b5 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b4 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b5 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b6 [label="EXP expr"];
b7 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b8 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
b7 [label="lhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b8 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
b9 [label="POS expr"];
c0 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
c0 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
c1 [label="NEG expr"];
c2 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
c2 [label="rhs gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
c3 [label="get_instant()" shape=diamond style=filled fillcolor=lightcoral];
c3 [label="get_instant()" shape=diamond style=filled fillcolor=lightsalmon];
c4 [label="return" shape=oval style=filled fillcolor=lightskyblue1];

View file

@ -12,37 +12,37 @@ digraph fn_gen_integer {
a0 [label="choice" rank=max];
a1 [label="ADD expr"];
a2 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a3 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a2 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
a3 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
a4 [label="SUB expr"];
a5 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a6 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a5 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
a6 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
a7 [label="MUL expr"];
a8 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a9 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
a8 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
a9 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b0 [label="DIV expr"];
b1 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b2 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b1 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b2 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b3 [label="REM expr"];
b4 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b5 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b4 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b5 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b6 [label="EXP expr"];
b7 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b8 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
b7 [label="lhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b8 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
b9 [label="POS expr"];
c0 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
c0 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c1 [label="NEG expr"];
c2 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightcoral];
c2 [label="rhs gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
c5 [label="gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
c3 [label="get_instant()" shape=diamond style=filled fillcolor=lightcoral];
c5 [label="gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
c3 [label="get_instant()" shape=diamond style=filled fillcolor=lightsalmon];
c4 [label="return" shape=oval style=filled fillcolor=lightskyblue1];

View file

@ -12,7 +12,7 @@ digraph fn_gen_integer {
a0 [label="choice" rank=max];
a1 [label="for each field"];
a2 [label="gen that type"];
a3 [label="get_instant()" shape=diamond style=filled fillcolor=lightcoral];
a3 [label="get_instant()" shape=diamond style=filled fillcolor=lightsalmon];
a4 [label="return" shape=oval style=filled fillcolor=lightskyblue1];
{rank=same; a1 a2 a3}