Advertisement
Guest User

subgrafos dot

a guest
Dec 8th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.79 KB | None | 0 0
  1. digraph
  2. {
  3. splines=true;
  4. graph [pad="0.5", ranksep="1.0", nodesep="0.7"];
  5. vcsn_context = "lal_char(ab)_q"
  6. rankdir = LR
  7. {
  8. node [style = invis, shape = none, label = "", width = 0, height = 0]
  9. I0
  10. }
  11. subgraph {
  12. node [shape = circle, width = 1, height = 1]
  13. rank = same; 1; 2; 3; 4;
  14. 2 -> 3 [label ="Σ² | 1,0"]
  15. }
  16. subgraph {
  17. node [shape = circle, width = 1, height = 1]
  18. rank = same; 5; 6; 7; 8;
  19. 5 -> 6 [label ="Σ³ | 1,0"]
  20. }
  21. {
  22. node [shape = circle, width = 1, height = 1]
  23. 1
  24. 2
  25. 3
  26. 4
  27. 5
  28. 6
  29. 7
  30. 8
  31. }
  32. edge [arrowhead = open]
  33. 1
  34. I0 -> 1
  35. 1 -> 2 [label ="Σ² | 1,0"]
  36.  
  37. 3 -> 4 [label ="Σ⁴ | 1,0"]
  38. 4 -> 5 [label ="Σ⁴ | 1,0"]
  39.  
  40. 6 -> 7 [label ="Σ¹ | 1,0"]
  41. 7 -> 8 [label ="Σ² | 1,0"]
  42. 8 -> 1 [label = "FDM | 1.0", weight=3]
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement