Skip to content

Commit

Permalink
Fix #1855 - incorporate new reference cycle diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Dec 10, 2020
1 parent d28183f commit cdb1394
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 50 deletions.
16 changes: 16 additions & 0 deletions dot/trpl15-04.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
digraph {
node[shape=record];
rankdir=LR;

l1[label="{<data> 5| <next>}"];
l2[label="{<data> 10| <next>}"];

{node[shape=point height=0] invisible_start invisible_end}

a -> l1:n;
b -> l2:n;
invisible_start:n -> l1[arrowtail=none];
invisible_start:s -> invisible_end:s[dir=none];
l1:next:c -> l2:data;
l2:next:c -> invisible_end:n[arrowhead=none];
}
129 changes: 79 additions & 50 deletions src/img/trpl15-04.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cdb1394

Please sign in to comment.