/doc/report/graphs/if.dot
http://github.com/hhughes/ocaml-frui · DOT · 18 lines · 16 code · 2 blank · 0 comment · 0 complexity · 85c80c051fd99405d07fea9c71b79b06 MD5 · raw file
- digraph if {
- X [label="x"]
- Y [label="y"]
- Z [label="z"]
- E1 [label="x+y"]
- E2 [label="a:z=0"]
- E3 [label="b:((x+y) / z)"]
- R1 [label="if a then 0 else b"]
- X->E1
- Y->E1
- Z->E2
- E1->E3
- Z->E3
- E2->R1
- E3->R1
- }