Skip to content

Commit e747c0e

Browse files
authored
Merge pull request #8 from gap-packages/mh/doc-tests
Adjust two manual examples for GAP master
2 parents 75a4833 + d9b3897 commit e747c0e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

gap/Discreteness.gd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ DeclareAttribute( "InvolutiveCompatibilityCocycle" , IsLocalAction );
112112
#!
113113
#! @BeginExampleSession
114114
#! gap> F:=LocalAction(3,1,AlternatingGroup(3));;
115-
#! gap> z:=InvolutiveCompatibilityCocycle(F);
116-
#! MappingByFunction( <object>, Alt( [ 1 .. 3 ] ), function( s ) ... end )
115+
#! gap> z:=InvolutiveCompatibilityCocycle(F);;
117116
#! gap> mt:=RandomSource(IsMersenneTwister,1);;
118117
#! gap> a:=Random(mt,F);; dir:=Random(mt,[1..3]);;
119118
#! gap> a; Image(z,[a,dir]);
@@ -124,8 +123,8 @@ DeclareAttribute( "InvolutiveCompatibilityCocycle" , IsLocalAction );
124123
#! @BeginExampleSession
125124
#! gap> G:=LocalActionGamma(3,AlternatingGroup(3));
126125
#! Group([ (1,4,5)(2,3,6) ])
127-
#! gap> InvolutiveCompatibilityCocycle(G);
128-
#! MappingByFunction( <object>, Group([ (1,4,5)(2,3,6) ]), function( s ) ... end )
126+
#! gap> InvolutiveCompatibilityCocycle(G) <> fail;
127+
#! true
129128
#! gap> InvolutiveCompatibilityCocycle(AutBall(3,2));
130129
#! fail
131130
#! @EndExampleSession

0 commit comments

Comments
 (0)