parse-tree.dot 325 B

1234567891011121314
  1. digraph G {
  2. conj[label="∧", shape=rectangle];
  3. disj[label="∨", shape=rectangle];
  4. p1[label=<p<sub>1</sub>>, shape=circle];
  5. p2[label=<p<sub>2</sub>>, shape=circle];
  6. p3[label=<p<sub>3</sub>>, shape=circle];
  7. {rank=same; p1, disj}
  8. {rank=same; p2, p3}
  9. conj -> disj;
  10. conj -> p1;
  11. disj -> p2;
  12. disj -> p3;
  13. }