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.