Skip to content

Commit

Permalink
Fix order of arguments in Free{Burnside,Nilpotent,Engel}. New release
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentbartholdi committed Jul 8, 2024
1 parent 603a7fe commit 785362b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ SetPackageInfo( rec(

PackageName := "lpres",
Subtitle := "Nilpotent Quotients of L-Presented Groups",
Version := "1.0.3",
Date := "20/03/2022", # dd/mm/yyyy format
Version := "1.1.0",
Date := "08/07/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down
4 changes: 2 additions & 2 deletions doc/lpresented.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ many identities is finitely L-presented. Some of these groups are
available from the &lpres;-package using the following operations; for
further details we refer to the diploma thesis <Cite Key="H08"/>.

<ManSection><Oper Name="FreeEngelGroup" Arg="n num"/>
<ManSection><Oper Name="FreeEngelGroup" Arg="num n"/>
<Description>
returns an L-presentation for the free <A>n</A>-Engel group on
<A>num</A> generators; that is, the free group in the variety of
Expand All @@ -135,7 +135,7 @@ further details we refer to the diploma thesis <Cite Key="H08"/>.
</Description>
</ManSection>

<ManSection><Oper Name="FreeNilpotentGroup" Arg="c num"/>
<ManSection><Oper Name="FreeNilpotentGroup" Arg="num c"/>
<Description>
returns an L-presentation for the free nilpotent group of class
<A>c</A> on <A>num</A> generators; that is, the free group in the
Expand Down
4 changes: 2 additions & 2 deletions gap/examples.gd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ DeclareGlobalFunction( "ExamplesOfLPresentations" );

############################################################################
##
#O FreeEngelGroup ( <n>, <num> )
#O FreeEngelGroup ( <num>, <n> )
##
## returns an L-presentation for the free <n>-Engel Group on <num>
## generators.
Expand All @@ -33,7 +33,7 @@ DeclareOperation( "FreeBurnsideGroup", [ IsPosInt, IsPosInt ]);

############################################################################
##
#O FreeNilpotentGroup( <c>, <num> )
#O FreeNilpotentGroup( <num>, <c> )
##
## returns an L-presentation for the free nilpotent group of class <c>
## on <num> generators.
Expand Down
6 changes: 3 additions & 3 deletions gap/examples.gi
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ InstallGlobalFunction(ExamplesOfLPresentations,

############################################################################
##
#O FreeEngelGroup ( <n>, <num> )
#O FreeEngelGroup ( <num>, <n> )
##
## returns an L-presentation for the Free n-th Engel Group on <num>
## generators; see Section~2.4 of [Har08].
Expand All @@ -272,7 +272,7 @@ InstallMethod( FreeEngelGroup,
"for positive integers",
true,
[IsPosInt,IsPosInt], 0,
function( c, n )
function( n, c )
local L, # L-presented Group
F, # free group
gens, # generators of the free group
Expand Down Expand Up @@ -363,7 +363,7 @@ InstallMethod( FreeBurnsideGroup,

############################################################################
##
#O FreeNilpotentGroup( <c>, <num> )
#O FreeNilpotentGroup( <num>, <c> )
##
## returns an L-presentation for the free nilpotent group of class <c>
## on <num> generators; see Section~2.4 of [Har08].
Expand Down

0 comments on commit 785362b

Please sign in to comment.