@@ -103,8 +103,8 @@ InstallMethod( CongruenceSubgroupGamma0, "for integer matrix group and positive
103103 # # Remaining components to be computed in other functions.
104104 ProjectiveSpace(G);
105105 AmbientTransversal(G);
106- CosetPosFunction (G); # A generic method will be used to construct the
107- CosetRepFunction (G); # these two functions except for cases with a
106+ AmbientPosition (G); # A generic method will be used to construct the
107+ AmbientRepresentation (G); # these two functions except for cases with a
108108 # bespoke implementation.
109109 # cosetPos and poscan are used interchangably.
110110
@@ -180,8 +180,8 @@ InstallMethod( PrincipalCongruenceSubgroup,
180180 # #
181181 # # Remaining components to be computer elsewhere.
182182 AmbientTransversal(G);
183- CosetPosFunction (G); # A generic method will be used to construct the
184- CosetRepFunction (G); # these two functions except for cases with a
183+ AmbientPosition (G); # A generic method will be used to construct the
184+ AmbientRepresentation (G); # these two functions except for cases with a
185185 # bespoke implementation.
186186 # cosetPos and poscan are used interchangably.
187187
@@ -407,7 +407,7 @@ InstallMethod( IsSubset,
407407 if Size(StabilizerSubgroup(G))= 1 then
408408 AmbientTree(G);
409409 nodes:= G!. nodes;
410- poscan:= CosetPosFunction (G);
410+ poscan:= AmbientPosition (G);
411411
412412 else
413413 # ###############################################################
@@ -525,7 +525,7 @@ InstallMethod( IsSubset,
525525# # Returns a tree representing the cosets of G in the ambient group GG.
526526 InstallMethod(AmbientTree,
527527 " Constructs a coset tree for a congruence subgroup in the ambient group, and uses it to obtain a generating set (faster method)" ,
528- [ IsHAPCongruenceSubgroup and HasCosetPosFunction and HasCosetRepFunction ] ,
528+ [ IsHAPCongruenceSubgroup and HasAmbientPosition and HasAmbientRepresentation ] ,
529529 function (G )
530530 local GG, ambientGenerators, tree,InGmodU,Ugrp,U,v,p,g,s,n,q,vv,
531531 leaves,genTriples,generators, InLowDegreeNodesModG, csts, cnt,
@@ -538,8 +538,8 @@ InstallMethod( IsSubset,
538538 GG:= AmbientGroupOfCongruenceSubgroup(G);
539539 ambientGenerators:= GeneratorsOfGroup(GG);
540540 one:= One(GG);
541- cosetPos:= CosetPosFunction (G);
542- cosetRep:= CosetRepFunction (G);
541+ cosetPos:= AmbientPosition (G);
542+ cosetRep:= AmbientRepresentation (G);
543543
544544 Ugrp:= StabilizerSubgroup(G);
545545 Ugrp:= Elements(Ugrp);
@@ -616,11 +616,11 @@ InstallMethod( IsSubset,
616616
617617# #########################################################################
618618# #
619- # # CosetPosFunction ( <G> )
619+ # # AmbientPosition ( <G> )
620620# #
621621# # Returns a function cosetPos(g) giving the position of the coset gG in
622622# # the ambient group.
623- InstallMethod(CosetPosFunction ,
623+ InstallMethod(AmbientPosition ,
624624 " Returns cosetPos(g) function for the congruence subgroup G" ,
625625 [ IsIntegerMatrixGroup and IsHAPPrincipalCongruenceSubgroup ] ,
626626 function (G )
@@ -652,11 +652,11 @@ InstallMethod( IsSubset,
652652
653653# #########################################################################
654654# #
655- # # CosetRepFunction ( <G> )
655+ # # AmbientRepresentation ( <G> )
656656# #
657657# # Returns a function cosetRep(g) giving a representative of the coset gG in
658658# # the ambient group.
659- InstallMethod(CosetRepFunction ,
659+ InstallMethod(AmbientRepresentation ,
660660 " Returns cosetPos(g) function for the congruence subgroup G" ,
661661 [ IsIntegerMatrixGroup and IsHAPPrincipalCongruenceSubgroup ] ,
662662 function (G )
@@ -724,9 +724,9 @@ InstallMethod( IsSubset,
724724
725725# #########################################################################
726726# #
727- # # CosetPosFunction ( <G> )
727+ # # AmbientPosition ( <G> )
728728# #
729- InstallOtherMethod(CosetPosFunction ,
729+ InstallOtherMethod(AmbientPosition ,
730730 " for a generic congruence subgroup (slow method via ambient tree)" ,
731731 [ IsHAPCongruenceSubgroup ] ,
732732 function (G )
@@ -746,9 +746,9 @@ InstallMethod( IsSubset,
746746
747747# #########################################################################
748748# #
749- # # CosetRepFunction ( <G> )
749+ # # AmbientRepresentation ( <G> )
750750# #
751- InstallOtherMethod(CosetRepFunction ,
751+ InstallOtherMethod(AmbientRepresentation ,
752752 " for a generic congruence subgroup (slow method via ambient tree)" ,
753753 [ IsHAPCongruenceSubgroup ] ,
754754 function (G )
@@ -892,8 +892,8 @@ G!.ambientMembership:=ambientMembership;
892892G!. AmbientGroupOfCongruenceSubgroup:= AmbientGroupOfCongruenceSubgroup(H);
893893
894894AmbientTransversal(G);
895- CosetPosFunction (G);
896- CosetRepFunction (G);
895+ AmbientPosition (G);
896+ AmbientRepresentation (G);
897897
898898return G;
899899
0 commit comments