/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

  1. digraph if {
  2. X [label="x"]
  3. Y [label="y"]
  4. Z [label="z"]
  5. E1 [label="x+y"]
  6. E2 [label="a:z=0"]
  7. E3 [label="b:((x+y) / z)"]
  8. R1 [label="if a then 0 else b"]
  9. X->E1
  10. Y->E1
  11. Z->E2
  12. E1->E3
  13. Z->E3
  14. E2->R1
  15. E3->R1
  16. }