Files
Construction-of-Compilers/Project-02-03-04/cfgdots/simple_if_5.dot
2026-01-23 13:01:50 +01:00

23 lines
626 B
Plaintext

digraph CFG {
node [fontname="Helvetica"];
n890 [label="START", shape=ellipse, style=filled, color=gray];
n890 -> n892;
n892 [label="2", shape=box];
n892 -> n893;
n893 [label="3", shape=box];
n893 -> n894;
n894 [label="5", shape=box];
n894 -> n895;
n895 [label="3 + 5", shape=box];
n895 -> n896;
n896 [label="2 > (3 + 5)", shape=box];
n896 -> n897;
n897 [label="<?>", shape=diamond];
n897 -> n901 [label="T"];
n897 -> n902 [label="F"];
n901 [label="1", shape=box];
n901 -> n891;
n891 [label="END", shape=ellipse, style=filled, color=gray];
n902 [label="0", shape=box];
n902 -> n891;
}