mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 10:16:15 +00:00
Deploy thephez/dash-docs to github.com/thephez/dash-docs.git:gh-pages
This commit is contained in:
commit
391f4f5496
1080 changed files with 220436 additions and 0 deletions
39
img/dev/en-block-height-vs-depth.dot
Normal file
39
img/dev/en-block-height-vs-depth.dot
Normal file
|
@ -0,0 +1,39 @@
|
|||
digraph {
|
||||
size=6.25;
|
||||
rankdir=BT
|
||||
node [ shape = "box" ]
|
||||
|
||||
subgraph cluster_height {
|
||||
h0 [ label = "Block 0" ]
|
||||
h1 [ label = "Block 1" ]
|
||||
h100 [ label = "Block 100" ]
|
||||
h101 [ label = "Block 101" ]
|
||||
h102 [ label = "Block 102" ]
|
||||
|
||||
h0 -> h1
|
||||
h1 -> h100 [ style = dotted ];
|
||||
h100 -> h101 -> h102
|
||||
|
||||
label = "Block Height"
|
||||
labelloc = b;
|
||||
}
|
||||
|
||||
subgraph cluster_depth {
|
||||
edge [ dir = "back" ];
|
||||
|
||||
d0 [ label = "Depth 101" ]
|
||||
d1 [ label = "Depth 100" ]
|
||||
d100 [ label = "Depth 3" ]
|
||||
d101 [ label = "Depth 2" ]
|
||||
d102 [ label = "Depth 1" ]
|
||||
|
||||
d0 -> d1
|
||||
d1 -> d100 [ style = dotted];
|
||||
d100 -> d101 -> d102
|
||||
|
||||
label = "Block Depth"
|
||||
labelloc = b;
|
||||
}
|
||||
|
||||
label = "Block Height Compared\nTo Block Depth"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue