Skip to content

Instantly share code, notes, and snippets.

@mcapodici
Created April 21, 2023 05:45
Show Gist options
  • Save mcapodici/df2fe772838c6f464be32f750c141748 to your computer and use it in GitHub Desktop.
Save mcapodici/df2fe772838c6f464be32f750c141748 to your computer and use it in GitHub Desktop.
Graphviz for CSC321 Winter 2018, Hw3, Q2
digraph G {
node [shape="none"]
rankdir="LR"
R [label=<𝓡>, fontcolor=blue]
S [label=<𝓢>, fontcolor=blue]
E [label=<𝓔>, fontcolor=darkgreen]
h [label=<<b>h</b>>, fontcolor=blue]
y [label=<<b>y</b>>, fontcolor=blue]
z [label=<<b>z</b>>, fontcolor=blue]
x [label=<<b>x</b>>]
r [label=<<b>r</b>>]
s [label=<<b>s</b>>]
W1 [label=<<b>W1</b>>, fontcolor=red]
W2 [label=<<b>W2</b>>, fontcolor=red]
b1 [label=<<b>b1</b>>, fontcolor=red]
b2 [label=<<b>b2</b>>, fontcolor=red]
R->E
S->E
s->S
y->S
r->R
h->R
z->h
x->z
W1->z
b1->z
x->y
h->y
W2->y
b2->y
}
@mcapodici
Copy link
Author

@mcapodici
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment