mirror of
https://github.com/boostorg/graph.git
synced 2025-05-09 23:14:00 +00:00
14 lines
98 B
Plaintext
14 lines
98 B
Plaintext
digraph TC {
|
|
node[shape=circle];
|
|
a
|
|
b
|
|
c
|
|
d
|
|
|
|
b -> c
|
|
b -> d
|
|
c -> b
|
|
d -> c
|
|
d -> a
|
|
}
|