Digraphs database
I'm interested in the list of digraphs without muliedges and I used the following command, but it does not give me back any output.
for G in digraphs(3,lambda G: G.allow_multiple_edges(False)):
print(G.show())
I'm wondering why there is no output and how I can fix it.
G.allow_multiple_edges is returning nothing, but acting on the graph's options
The digraphs returned by the digraphs generator are simple (multiple edges not allowed).
If you want digraphs without symmetric pairs, you can do: