-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,049 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
############################################################################# | ||
## | ||
## | ||
## PackageInfo.g for the package `modisom' Bettina Eick | ||
## | ||
## | ||
SetPackageInfo( rec( | ||
PackageName := "ModIsom", | ||
Subtitle := "Computing automorphisms and checking isomorphisms for modular group algebras of finite p-groups", | ||
Version := "2.5.4", | ||
Date := "27/02/2023", # dd/mm/yyyy format | ||
Version := "3.0.0", | ||
Date := "20/09/2024", # dd/mm/yyyy format | ||
License := "GPL-2.0-or-later", | ||
|
||
Persons := [ | ||
rec( | ||
rec( | ||
LastName := "Eick", | ||
FirstNames := "Bettina", | ||
IsAuthor := true, | ||
|
@@ -26,6 +26,23 @@ Persons := [ | |
Place := "Braunschweig", | ||
Institution := "TU Braunschweig" | ||
), | ||
|
||
rec( | ||
LastName := "Garcia-Lucas", | ||
FirstNames := "Diego", | ||
IsAuthor := true, | ||
IsMaintainer := false, | ||
Email := "[email protected]", | ||
PostalAddress := Concatenation( | ||
"Departamento de Matematicas\n", | ||
"Facultad de Matematicas\n", | ||
"Universidad de Murcia\n", | ||
"ES-30100 Murcia\n", | ||
"Spain" ), | ||
Place := "Murcia", | ||
Institution := "Universidad de Murcia" | ||
), | ||
|
||
rec( | ||
LastName := "Konovalov", | ||
FirstNames := "Olexandr", | ||
|
@@ -40,7 +57,39 @@ Persons := [ | |
"St Andrews, Fife, KY16 9SX, Scotland" ] ), | ||
Place := "St Andrews", | ||
Institution := "University of St Andrews" | ||
) ], | ||
), | ||
rec( | ||
LastName := "Margolis", | ||
FirstNames := "Leo", | ||
IsAuthor := true, | ||
IsMaintainer := true, | ||
Email := "[email protected]", | ||
WWWHome := "http://www.margollo.github.io", | ||
PostalAddress := Concatenation( | ||
"Departamento de Matematicas\n", | ||
"Universidad Autonoma de Madrid\n", | ||
"Campus Cantoblanco\n", | ||
"28049 Madrid\n", | ||
"Spain" ), | ||
Place := "Madrid", | ||
Institution := "Universidad Autonoma de Madrid" | ||
), | ||
rec( | ||
LastName := "Moede", | ||
FirstNames := "Tobias", | ||
IsAuthor := true, | ||
IsMaintainer := false, | ||
Email := "[email protected]", | ||
WWWHome := "https://www.tu-braunschweig.de/iaa/personal/moede", | ||
PostalAddress := Concatenation( [ | ||
"Institute of Analysis and Algebra\n", | ||
"TU Braunschweig\n", | ||
"Universitaetsplatz 2, 38106 Braunschweig\n", | ||
"Germany" ] ), | ||
Place := "Braunschweig", | ||
Institution := "TU Braunschweig" | ||
) | ||
], | ||
|
||
Status := "accepted", | ||
CommunicatedBy := "Olexandr Konovalov (St Andrews)", | ||
|
@@ -59,7 +108,7 @@ ArchiveURL := Concatenation( ~.SourceRepository.URL, | |
"/modisom-", ~.Version ), | ||
ArchiveFormats := ".tar.gz", | ||
|
||
AbstractHTML := | ||
AbstractHTML := | ||
"The <span class=\"pkgname\">ModIsom</span> package contains various methods for computing with nilpotent associative algebras. In particular, it contains a method to determine the automorphism group and to test isomorphis of such algebras over finite fields and of modular group algebras of finite p-groups, and it contains a nilpotent quotient algorithm for finitely presented associative algebras and a method to determine Kurosh algebras.", | ||
|
||
PackageDoc := rec( | ||
|
@@ -75,7 +124,7 @@ PackageDoc := rec( | |
|
||
Dependencies := rec( | ||
GAP := ">=4.7", | ||
NeededOtherPackages := [["Polycyclic", ">=1.0"]], | ||
NeededOtherPackages := [["Polycyclic", ">=1.0"]], | ||
SuggestedOtherPackages := [], | ||
ExternalConditions := [] | ||
), | ||
|
@@ -85,7 +134,7 @@ AvailabilityTest := ReturnTrue, | |
Autoload := false, | ||
TestFile := "tst/testall.g", | ||
Keywords := ["modular isomorphism problem", | ||
"automorphism group", | ||
"automorphism group", | ||
"isomorphism testing", | ||
"nilpotent algebras", | ||
"nilpotent quotient", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
name: ModIsom | ||
version: "2.5.4" | ||
version: "3.0.0" | ||
license: "GPL-2.0-or-later" | ||
date: 2023-02-27 | ||
date: 2024-09-20 | ||
description: | | ||
Computing automorphisms and checking isomorphisms for modular group algebras of finite p-groups | ||
authors: | ||
- name: Bettina Eick | ||
url: http://www.iaa.tu-bs.de/beick | ||
- name: Diego Garcia-Lucas | ||
url: mailto:[email protected] | ||
- name: Leo Margolis | ||
url: http://www.margollo.github.io | ||
- name: Tobias Moede | ||
url: https://www.tu-braunschweig.de/iaa/personal/moede | ||
|
||
maintainers: | ||
- name: Bettina Eick | ||
url: http://www.iaa.tu-bs.de/beick | ||
- name: Olexandr Konovalov | ||
url: https://olexandr-konovalov.github.io/ | ||
- name: Leo Margolis | ||
url: http://www.margollo.github.io | ||
|
||
GAP: ">=4.7" | ||
|
||
|
@@ -28,7 +36,7 @@ packageinfo: https://gap-packages.github.io/modisom/PackageInfo.g | |
|
||
downloads: | ||
- name: .tar.gz | ||
url: https://github.com/gap-packages/modisom/releases/download/v2.5.4/modisom-2.5.4.tar.gz | ||
url: https://github.com/gap-packages/modisom/releases/download/v3.0.0/modisom-3.0.0.tar.gz | ||
|
||
abstract: | | ||
The <span class="pkgname">ModIsom</span> package contains various methods for computing with nilpotent associative algebras. In particular, it contains a method to determine the automorphism group and to test isomorphis of such algebras over finite fields and of modular group algebras of finite p-groups, and it contains a nilpotent quotient algorithm for finitely presented associative algebras and a method to determine Kurosh algebras. | ||
|
@@ -40,30 +48,31 @@ keywords: | | |
modular isomorphism problem, automorphism group, isomorphism testing, nilpotent algebras, nilpotent quotient, Kurosh algebras. | ||
citeas: | | ||
<p class='BibEntry'> | ||
[<span class='BibKey'>EK23</span>] <b class='BibAuthor'>Eick, B. and Konovalov, O.</b>, | ||
[<span class='BibKey'>EGKMM24</span>] <b class='BibAuthor'>Eick, B., Garcia-Lucas, D., Konovalov, O., Margolis, L. and Moede, T.</b>, | ||
<i class='BibTitle'>ModIsom, Computing automorphisms and checking isomorphisms for modular group algebras of finite p-groups, | ||
Version 2.5.4</i> | ||
(<span class='BibYear'>2023</span>)<br /> | ||
(<span class='BibNote'>Refereed GAP package</span>), | ||
Version 3.0.0</i> | ||
(<span class='BibYear'>2024</span>)<br /> | ||
(<span class='BibNote'>GAP package</span>), | ||
<span class='BibHowpublished'><a href="https://gap-packages.github.io/modisom/">https://gap-packages.github.io/modisom/</a></span>. | ||
</p> | ||
bibtex: | | ||
@misc{ ModIsom2.5.4, | ||
author = {Eick, B. and Konovalov, O.}, | ||
@misc{ ModIsom, | ||
author = {Eick, B. and Garcia\texttt{\symbol{45}}Lucas, D. and | ||
Konovalov, O. and Margolis, L. and Moede, T.}, | ||
title = {{ModIsom}, Computing automorphisms and checking | ||
isomorphisms for modular group algebras of finite | ||
p-groups, {V}ersion 2.5.4}, | ||
month = {Feb}, | ||
year = {2023}, | ||
note = {Refereed GAP package}, | ||
p\texttt{\symbol{45}}groups, {V}ersion 3.0.0}, | ||
month = {Sep}, | ||
year = {2024}, | ||
note = {GAP package}, | ||
howpublished = {\href {https://gap-packages.github.io/modisom/} | ||
{\texttt{https://gap-packages.github.io/}\discretionary | ||
{\texttt{https://gap\texttt{\symbol{45}}packages.github.io/}\discretionary | ||
{}{}{}\texttt{modisom/}}}, | ||
keywords = {modular isomorphism problem; automorphism group; | ||
isomorphism testing; nilpotent algebras; nilpotent | ||
quotient; Kurosh algebras}, | ||
printedkey = {EK23} | ||
printedkey = {EGKMM24} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.