-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathast.dot
More file actions
34 lines (33 loc) · 1.15 KB
/
Copy pathast.dot
File metadata and controls
34 lines (33 loc) · 1.15 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
digraph AST {
node [shape=box, style="rounded,filled", fontname="Arial"];
edge [arrowsize=0.7];
rankdir=TB;
bgcolor="#f8f8f8";
n0 [label="−", fillcolor="#fff3e0"];
n1 [label="−", fillcolor="#fff3e0"];
n2 [label="cosh()", shape=hexagon, fillcolor="#d1c4e9"];
n3 [label="×", fillcolor="#ffe0b2"];
n4 [label="2", shape=circle, fillcolor="#e3f2fd"];
n5 [label="x", shape=ellipse, fillcolor="#c8e6c9"];
n3 -> n4 [label="L"];
n3 -> n5 [label="R"];
n2 -> n3 [label="arg0"];
n6 [label="^", fillcolor="#f8bbd0"];
n7 [label="sinh()", shape=hexagon, fillcolor="#d1c4e9"];
n8 [label="x", shape=ellipse, fillcolor="#c8e6c9"];
n7 -> n8 [label="arg0"];
n9 [label="2", shape=circle, fillcolor="#e3f2fd"];
n6 -> n7 [label="base"];
n6 -> n9 [label="exp"];
n1 -> n2 [label="L"];
n1 -> n6 [label="R"];
n10 [label="^", fillcolor="#f8bbd0"];
n11 [label="cosh()", shape=hexagon, fillcolor="#d1c4e9"];
n12 [label="x", shape=ellipse, fillcolor="#c8e6c9"];
n11 -> n12 [label="arg0"];
n13 [label="2", shape=circle, fillcolor="#e3f2fd"];
n10 -> n11 [label="base"];
n10 -> n13 [label="exp"];
n0 -> n1 [label="L"];
n0 -> n10 [label="R"];
}