Advertisement
ExcelToGraphviz

Untitled

Feb 10th, 2020
2,532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 2.04 KB | None | 0 0
  1. strict digraph "main"
  2. {
  3.     rankdir="TB";
  4.     splines="spline";
  5.    
  6.     node[ shape="box" height="0.375" width="1.5" fixedsize="True" fontname="Arial" fontsize="10" style="rounded" ];
  7.     edge[ fontname="Arial" fontsize="10" arrowsize="0.5" labeldistance="1.5" ];
  8.     ranksep=".25"
  9.     {rank="min"; "TLR"}
  10.     {rank="same";"SDRS","SIRS"}
  11.     {rank="same";"CDR","CIR"}
  12.     "CDR"[ label="Capture-DR" ];
  13.     "CIR"[ label="Capture-IR" ];
  14.     "E1DR"[ label="Exit1-DR" ];
  15.     "E1IR"[ label="Exit1-IR" ];
  16.     "E2DR"[ label="Exit2-DR" ];
  17.     "E2IR"[ label="Exit2-IR" ];
  18.     "PDR"[ label="Pause-DR" ];
  19.     "PIR"[ label="Pause-IR" ];
  20.     "RTI"[ label="Run-Test/\nIdle" ];
  21.     "SDR"[ label="Shift-DR" ];
  22.     "SDRS"[ label="Select\nDR-Scan" ];
  23.     "SIR"[ label="Shift-IR" ];
  24.     "SIRS"[ label="Select\nIR-Scan" ];
  25.     "TLR"[ label="Test-Logic-\nReset" ];
  26.     "UDR"[ label="Update-DR" ];
  27.     "UIR"[ label="Update-IR" ];
  28.     "CDR" -> "E1DR"[ taillabel="1" ];
  29.     "CDR" -> "SDR"[ label="0" ];
  30.     "CIR" -> "E1IR"[ taillabel="1" ];
  31.     "CIR" -> "SIR"[ label="0" ];
  32.     "E1DR" -> "PDR"[ label="0" ];
  33.     "E1DR" -> "UDR"[ taillabel="1" ];
  34.     "E1IR" -> "PIR"[ label="0" ];
  35.     "E1IR" -> "UIR"[ taillabel="1" ];
  36.     "E2DR" -> "SDR"[ taillabel="0" ];
  37.     "E2DR" -> "UDR"[ label="1" ];
  38.     "E2IR" -> "SIR"[ taillabel="0" ];
  39.     "E2IR" -> "UIR"[ label="1" ];
  40.     "PDR" -> "E2DR"[ label="1" ];
  41.     "PDR" -> "PDR"[ label="0" ];
  42.     "PIR" -> "E2IR"[ label="1" ];
  43.     "PIR" -> "PIR"[ label="0" ];
  44.     "RTI" -> "SDRS"[ taillabel="1" ];
  45.     "RTI" -> "RTI"[ label="0" ];
  46.     "SDR" -> "E1DR"[ label="1" ];
  47.     "SDR" -> "SDR"[ label="0" ];
  48.     "SDRS" -> "CDR"[ label="0" ];
  49.     "SDRS" -> "SIRS"[ taillabel="1" ];
  50.     "SIR" -> "E1IR"[ label="1" ];
  51.     "SIR" -> "SIR"[ label="0" ];
  52.     "SIRS" -> "CIR"[ label="0" ];
  53.     "SIRS" -> "TLR"[ taillabel="1" ];
  54.     "TLR" -> "RTI"[ label="0" ];
  55.     "TLR" -> "TLR"[ label="1" ];
  56.     "UDR" -> "RTI"[ label="0" ];
  57.     "UDR" -> "SDRS"[ label="1" ];
  58.     "UIR" -> "RTI"[ label="0" ];
  59.     "UIR" -> "SDRS"[ label="1" ];
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement