-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathparse_node_graph.dot
More file actions
38 lines (37 loc) · 1.54 KB
/
Copy pathparse_node_graph.dot
File metadata and controls
38 lines (37 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
digraph G {
node [shape=box];
File -> Eq1;
Eq1 -> Var1
Var1 -> Id1;
Eq1 -> Const1;
File -> For;
For -> Eq2;
Eq2 -> Var2;
Var2 -> Id2;
Eq2 -> Const3;
For -> Binary;
Binary -> Id3;
Binary -> Const2;
For -> Prefix;
Prefix -> Id4;
For -> Block;
Block -> Eq3;
Eq3 -> Id5;
Eq3 -> Id6;
Eq1 [label="Equation ="];
Var1 [label="Var_Decl"];
Id1 [label="Id x"];
Const1 [label="Constant 0"];
Eq2 [label="Equation ="];
Var2 [label="Var_Decl"];
Id2 [label="Id i"];
Binary [label="Binary <"];
Id3 [label="Id i"];
Const2 [label="Constant 100"];
Const3 [label="Constant 0"];
Prefix [label="Prefix ++"];
Id4 [label="Id i"];
Eq3 [label="Equation +="];
Id5 [label="Id x"];
Id6 [label="Id i"];
}