@@ -2762,24 +2762,24 @@ gap> D1 := Digraph([[2, 3], [1, 3], [1, 2], [2], [3, 4]]);;
27622762gap> D2 := Digraph([[ 2 , 6 ] , [ 1 , 3 , 5 ] , [ 4 ] , [ 3 ] , [ 4 , 6 ] , [ 1 , 5 ]] );;
27632763gap> U := AmalgamDigraphs(D1, D2, [ 2 , 3 , 4 , 5 ] , [ 4 , 3 , 5 , 2 ] );
27642764[ < immutable digraph with 7 vertices, 15 edges> ,
2765- rec ( 1 := 6 , 2 := 5 , 3 := 3 , 4 := 2 , 5 := 4 , 6 := 7 ) ]
2765+ Transformation( [ 6 , 5 , 3 , 2 , 4 , 7 , 7 ] ) ]
27662766gap> D1 := Digraph([
27672767> [ 2 , 3 ] , [ 1 , 3 , 4 , 6 ] , [ 1 , 2 , 5 , 7 ] , [ 2 , 6 ] , [ 3 , 7 ] , [ 2 , 4 , 7 , 8 ] ,
27682768> [ 3 , 5 , 6 , 8 ] , [ 6 , 7 ]] );;
27692769gap> D2 := Digraph([
27702770> [ 2 , 3 ] , [ 1 , 4 ] , [ 1 , 5 ] , [ 2 , 5 , 6 ] , [ 3 , 4 , 7 ] , [ 4 , 7 ] , [ 5 , 6 ]] );;
27712771gap> U := AmalgamDigraphs(D1, D2, [ 2 , 3 , 6 , 7 ] , [ 4 , 5 , 6 , 7 ] );
27722772[ < immutable digraph with 11 vertices, 32 edges> ,
2773- rec ( 1 := 9 , 2 := 10 , 3 := 11 , 4 := 2 , 5 := 3 , 6 := 6 , 7 := 7 ) ]
2773+ Transformation( [ 9 , 10 , 11 , 2 , 3 , 6 , 7 , 8 , 9 , 10 , 11 ] ) ]
27742774gap> AmalgamDigraphs(D1, D2, [ 3 , 6 , 2 , 7 ] , [ 4 , 5 , 7 , 6 ] );
27752775Error, the subdigraph induced by the 3rd argument (a list) in the 1st argument\
27762776 (a digraph) does not equal the subdigraph induced by the 4th argument (a list\
27772777) in the 2nd argument (a digraph)
27782778gap> D1 := PetersenGraph();;
27792779gap> U := AmalgamDigraphs(D1, D1, [ 3 , 4 , 6 , 8 , 9 ] , [ 3 , 4 , 6 , 8 , 9 ] );
27802780[ < immutable digraph with 15 vertices, 50 edges> ,
2781- rec ( 1 := 11 , 10 := 15 , 2 := 12 , 3 := 3 , 4 := 4 , 5 := 13 , 6 := 6 , 7 := 14 ,
2782- 8 := 8 , 9 := 9 ) ]
2781+ Transformation( [ 11 , 12 , 3 , 4 , 13 , 6 , 14 , 8 , 9 , 15 , 11 , 12 , 13 , 14 , 15 ] )
2782+ ]
27832783
27842784# AmalgamDigraphsIsomorphic
27852785gap> D1 := PetersenGraph();;
@@ -2789,7 +2789,7 @@ gap> D2 := Digraph([
27892789gap> U := AmalgamDigraphsIsomorphic(D1, D2, [ 3 , 4 , 6 , 8 , 9 ] ,
27902790> [ 2 , 4 , 5 , 6 , 7 ] );
27912791[ < immutable digraph with 13 vertices, 42 edges> ,
2792- rec ( 1 := 11 , 2 := 3 , 3 := 12 , 4 := 4 , 5 := 8 , 6 := 9 , 7 := 6 , 8 := 13 ) ]
2792+ Transformation( [ 11 , 3 , 12 , 4 , 8 , 9 , 6 , 13 , 9 , 10 , 11 , 12 , 13 ] ) ]
27932793gap> U := AmalgamDigraphsIsomorphic(D1, D2, [ 3 , 4 , 10 , 8 , 9 ] ,
27942794> [ 2 , 4 , 5 , 6 , 7 ] );
27952795Error, the subdigraph induced by the 3rd argument (a list) in the 1st argument\
0 commit comments