Created
April 21, 2023 05:45
-
-
Save mcapodici/df2fe772838c6f464be32f750c141748 to your computer and use it in GitHub Desktop.
Graphviz for CSC321 Winter 2018, Hw3, Q2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://bit.ly/3oxKDDZ