Skip to content

Commit

Permalink
... and removed same from test, examples, manual
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwensley committed Jun 16, 2024
1 parent bf6d5e3 commit b56c9e4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions doc/xmod.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,9 @@ gap> SetName( S, "<e5>" );
gap> RS := Cartesian( R, S );;
gap> SetName( RS, "GF(2^2)[k4] x <e5>" );
gap> act := AlgebraAction( R, RS, S );;
gap> bdy := AlgebraHomomorphismByFunction( S, R, r->r );
MappingByFunction( <e5>, GF(2^2)[k4], function( r ) ... end )
gap> bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );
[ (Z(2)^0)*<identity> of ...+(Z(2)^0)*f1+(Z(2)^0)*f2+(Z(2)^0)*f1*f2 ] ->
[ (Z(2)^0)*<identity> of ...+(Z(2)^0)*f1+(Z(2)^0)*f2+(Z(2)^0)*f1*f2 ]
gap> IsAlgebraAction( act );
true
gap> IsAlgebraHomomorphism( bdy );
Expand Down
2 changes: 1 addition & 1 deletion examples/cat1.g
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ SetName( S, "<e5>" );
RS := Cartesian( R, S );;
SetName( RS, "GF(2^2)[k4] x <e5>" );
act := AlgebraAction( R, RS, S );;
bdy := AlgebraHomomorphismByFunction( S, R, r->r );
bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );
IsAlgebraAction( act );
IsAlgebraHomomorphism( bdy );
XM := PreXModAlgebraByBoundaryAndAction( bdy, act );
Expand Down
2 changes: 1 addition & 1 deletion examples/xmod.g
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ SetName( S, "<e5>" );
RS := Cartesian( R, S );;
SetName( RS, "GF(2^2)[k4] x <e5>" );
act := AlgebraAction( R, RS, S );;
bdy := AlgebraHomomorphismByFunction( S, R, r->r );
bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );
IsAlgebraAction( act );
IsAlgebraHomomorphism( bdy );
XM := PreXModAlgebraByBoundaryAndAction( bdy, act );
Expand Down
2 changes: 1 addition & 1 deletion tst/cat1.tst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ gap> e5 := Elements(R)[5];;
gap> S := Subalgebra( R, [e5] );;
gap> SetName( S, "<e5>" );
gap> act := AlgebraActionByMultipliers( R, S, R );;
gap> bdy := AlgebraHomomorphismByFunction( S, R, s->s );;
gap> bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );;
gap> IsAlgebraAction( act );;
gap> IsAlgebraHomomorphism( bdy );;
gap> XM := PreXModAlgebraByBoundaryAndAction( bdy, act );;
Expand Down
2 changes: 1 addition & 1 deletion tst/convert.tst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gap> e5 := Elements(R)[5];;
gap> S := Subalgebra( R, [e5] );;
gap> SetName( S, "<e5>" );
gap> act := AlgebraActionByMultipliers( R, S, R );;
gap> bdy := AlgebraHomomorphismByFunction( S, R, s->s );;
gap> bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );;
gap> IsAlgebraAction( act );;
gap> IsAlgebraHomomorphism( bdy );;
gap> XM := PreXModAlgebraByBoundaryAndAction( bdy, act );;
Expand Down
5 changes: 3 additions & 2 deletions tst/xmod.tst
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ gap> e5 := Elements( R )[5];
gap> S := Subalgebra( R, [e5] );;
gap> SetName( S, "<e5>" );
gap> act := AlgebraActionByMultipliers( R, S, R );;
gap> bdy := AlgebraHomomorphismByFunction( S, R, s->s );
MappingByFunction( <e5>, GF(2^2)[k4], function( s ) ... end )
gap> bdy := AlgebraHomomorphismByImages( S, R, [e5], [e5] );
[ (Z(2)^0)*<identity> of ...+(Z(2)^0)*f1+(Z(2)^0)*f2+(Z(2)^0)*f1*f2 ] ->
[ (Z(2)^0)*<identity> of ...+(Z(2)^0)*f1+(Z(2)^0)*f2+(Z(2)^0)*f1*f2 ]
gap> IsAlgebraAction( act );
true
gap> IsAlgebraHomomorphism( bdy );
Expand Down

0 comments on commit b56c9e4

Please sign in to comment.