gap> gr := Digraph(IsMutableDigraph, [[2, 2], []]);
<mutable multidigraph with 2 vertices, 2 edges>
gap> DigraphsUseBliss();
#I Using bliss by default for AutomorphismGroup . . .
gap> AutomorphismGroup(gr);
Group([ (), (1,2) ])
gap> DigraphsUseNauty();
#I Using NautyTracesInterface by default for AutomorphismGroup
#I bliss will be used for edge coloured automorphisms
gap> AutomorphismGroup(gr);
#I NautyTracesInterface is not available
fail
gap> AutomorphismGroup(Digraph([[2], [1]]));
Group([ (1,2) ])
Perhaps we should be using bliss for multidigraph automorphisms in all cases, regardless of the DigraphsUseNauty(); setting.
Perhaps we should be using
bliss
for multidigraph automorphisms in all cases, regardless of theDigraphsUseNauty();
setting.